jdk/src/java.base/share/classes/java/lang/Class.java
author plevart
Thu, 05 Jan 2017 08:51:03 +0100
changeset 42997 5f83f2054eca
parent 42948 1f4754f075f2
child 43062 b9593792dfd9
permissions -rw-r--r--
8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950 Summary: Final fix for 8062389: Class.getMethod() is inconsistent with Class.getMethods() results, 8029459: getMethods returns methods that are not members of the class, 8061950: Class.getMethods() exhibits quadratic time complexity Reviewed-by: alanb, mchung, psandoz, dfuchs, darcy, redestad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
     2
 * Copyright (c) 1994, 2016, 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: 3959
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: 3959
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: 3959
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3959
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3959
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    28
import java.lang.annotation.Annotation;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    29
import java.lang.module.ModuleReader;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.lang.ref.SoftReference;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    31
import java.io.IOException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.ObjectStreamField;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    34
import java.lang.reflect.AnnotatedElement;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    35
import java.lang.reflect.AnnotatedType;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    36
import java.lang.reflect.Array;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    37
import java.lang.reflect.Constructor;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    38
import java.lang.reflect.Executable;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    39
import java.lang.reflect.Field;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    40
import java.lang.reflect.GenericArrayType;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    41
import java.lang.reflect.GenericDeclaration;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    42
import java.lang.reflect.InvocationTargetException;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    43
import java.lang.reflect.Member;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    44
import java.lang.reflect.Method;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    45
import java.lang.reflect.Modifier;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    46
import java.lang.reflect.Module;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    47
import java.lang.reflect.Proxy;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    48
import java.lang.reflect.Type;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    49
import java.lang.reflect.TypeVariable;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    50
import java.net.URL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import java.util.ArrayList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import java.util.Collection;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    55
import java.util.HashMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import java.util.HashSet;
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
    57
import java.util.LinkedHashMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import java.util.List;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    59
import java.util.Map;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    60
import java.util.Objects;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
import java.util.Set;
26219
1a19360ff122 8054714: Use StringJoiner where it makes the code cleaner
igerasim
parents: 25991
diff changeset
    62
import java.util.StringJoiner;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    63
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    64
import jdk.internal.HotSpotIntrinsicCandidate;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    65
import jdk.internal.loader.BootLoader;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    66
import jdk.internal.loader.BuiltinClassLoader;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
    67
import jdk.internal.loader.ResourceHelper;
33674
566777f73c32 8140606: Update library code to use internal Unsafe
chegar
parents: 32649
diff changeset
    68
import jdk.internal.misc.Unsafe;
34882
ce2a8ec851c1 8145544: Move sun.misc.VM to jdk.internal.misc
chegar
parents: 34774
diff changeset
    69
import jdk.internal.misc.VM;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36511
diff changeset
    70
import jdk.internal.reflect.CallerSensitive;
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36511
diff changeset
    71
import jdk.internal.reflect.ConstantPool;
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36511
diff changeset
    72
import jdk.internal.reflect.Reflection;
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36511
diff changeset
    73
import jdk.internal.reflect.ReflectionFactory;
40175
8df87018d96a 8161379: Force inline methods calling Reflection.getCallerClass
redestad
parents: 39731
diff changeset
    74
import jdk.internal.vm.annotation.ForceInline;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
import sun.reflect.generics.factory.CoreReflectionFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
import sun.reflect.generics.factory.GenericsFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
import sun.reflect.generics.repository.ClassRepository;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
import sun.reflect.generics.repository.MethodRepository;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
import sun.reflect.generics.repository.ConstructorRepository;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
import sun.reflect.generics.scope.ClassScope;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
import sun.security.util.SecurityConstants;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
import sun.reflect.annotation.*;
16087
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
    83
import sun.reflect.misc.ReflectUtil;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 * Instances of the class {@code Class} represent classes and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 * interfaces in a running Java application.  An enum is a kind of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 * class and an annotation is a kind of interface.  Every array also
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 * belongs to a class that is reflected as a {@code Class} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 * that is shared by all arrays with the same element type and number
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * of dimensions.  The primitive Java types ({@code boolean},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * {@code byte}, {@code char}, {@code short},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 * {@code int}, {@code long}, {@code float}, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 * {@code double}), and the keyword {@code void} are also
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * represented as {@code Class} objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * <p> {@code Class} has no public constructor. Instead {@code Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 * objects are constructed automatically by the Java Virtual Machine as classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 * are loaded and by calls to the {@code defineClass} method in the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 * loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 * <p> The following example uses a {@code Class} object to print the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
 * class name of an object:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 21316
diff changeset
   105
 * <blockquote><pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
 *     void printClassName(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
 *         System.out.println("The class of " + obj +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *                            " is " + obj.getClass().getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
 *     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 * <p> It is also possible to get the {@code Class} object for a named
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   113
 * type (or for void) using a class literal.  See Section 15.8.2 of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   114
 * <cite>The Java&trade; Language Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 * For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 21316
diff changeset
   117
 * <blockquote>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 *     {@code System.out.println("The name of class Foo is: "+Foo.class.getName());}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 * @param <T> the type of the class modeled by this {@code Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 * object.  For example, the type of {@code String.class} is {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 * Class<String>}.  Use {@code Class<?>} if the class being modeled is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 * unknown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
 * @author  unascribed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 * @see     java.lang.ClassLoader#defineClass(byte[], int, int)
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   128
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 */
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   130
public final class Class<T> implements java.io.Serializable,
17710
ce8517f5a2fe 8014836: Have GenericDeclaration extend AnnotatedElement
darcy
parents: 16906
diff changeset
   131
                              GenericDeclaration,
ce8517f5a2fe 8014836: Have GenericDeclaration extend AnnotatedElement
darcy
parents: 16906
diff changeset
   132
                              Type,
ce8517f5a2fe 8014836: Have GenericDeclaration extend AnnotatedElement
darcy
parents: 16906
diff changeset
   133
                              AnnotatedElement {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    private static final int ANNOTATION= 0x00002000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    private static final int ENUM      = 0x00004000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    private static final int SYNTHETIC = 0x00001000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    private static native void registerNatives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        registerNatives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    /*
25392
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   144
     * Private constructor. Only the Java Virtual Machine creates Class objects.
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   145
     * This constructor is not used and prevents the default constructor being
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   146
     * generated.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     */
25517
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
   148
    private Class(ClassLoader loader, Class<?> arrayComponentType) {
25392
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   149
        // Initialize final field for classLoader.  The initialization value of non-null
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   150
        // prevents future JIT optimizations from assuming this final field is null.
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   151
        classLoader = loader;
25517
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
   152
        componentType = arrayComponentType;
25392
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   153
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * Converts the object to a string. The string representation is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * string "class" or "interface", followed by a space, and then by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * fully qualified name of the class in the format returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * {@code getName}.  If this {@code Class} object represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * primitive type, this method returns the name of the primitive type.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * this {@code Class} object represents void this method returns
28519
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   162
     * "void". If this {@code Class} object represents an array type,
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   163
     * this method returns "class " followed by {@code getName}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @return a string representation of this class object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        return (isInterface() ? "interface " : (isPrimitive() ? "" : "class "))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            + getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   172
    /**
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   173
     * Returns a string describing this {@code Class}, including
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   174
     * information about modifiers and type parameters.
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   175
     *
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   176
     * The string is formatted as a list of type modifiers, if any,
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   177
     * followed by the kind of type (empty string for primitive types
19031
6c9afe6dad33 8020810: Typo in javadoc for Class.toGenericString()
darcy
parents: 18827
diff changeset
   178
     * and {@code class}, {@code enum}, {@code interface}, or
6c9afe6dad33 8020810: Typo in javadoc for Class.toGenericString()
darcy
parents: 18827
diff changeset
   179
     * <code>&#64;</code>{@code interface}, as appropriate), followed
6c9afe6dad33 8020810: Typo in javadoc for Class.toGenericString()
darcy
parents: 18827
diff changeset
   180
     * by the type's name, followed by an angle-bracketed
6c9afe6dad33 8020810: Typo in javadoc for Class.toGenericString()
darcy
parents: 18827
diff changeset
   181
     * comma-separated list of the type's type parameters, if any.
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   182
     *
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   183
     * A space is used to separate modifiers from one another and to
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   184
     * separate any modifiers from the kind of type. The modifiers
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   185
     * occur in canonical order. If there are no type parameters, the
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   186
     * type parameter list is elided.
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   187
     *
28519
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   188
     * For an array type, the string starts with the type name,
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   189
     * followed by an angle-bracketed comma-separated list of the
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   190
     * type's type parameters, if any, followed by a sequence of
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   191
     * {@code []} characters, one set of brackets per dimension of
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   192
     * the array.
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   193
     *
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   194
     * <p>Note that since information about the runtime representation
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   195
     * of a type is being generated, modifiers not present on the
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   196
     * originating source code or illegal on the originating source
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   197
     * code may be present.
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   198
     *
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   199
     * @return a string describing this {@code Class}, including
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   200
     * information about modifiers and type parameters
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   201
     *
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   202
     * @since 1.8
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   203
     */
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   204
    public String toGenericString() {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   205
        if (isPrimitive()) {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   206
            return toString();
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   207
        } else {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   208
            StringBuilder sb = new StringBuilder();
28519
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   209
            Class<?> component = this;
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   210
            int arrayDepth = 0;
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   211
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   212
            if (isArray()) {
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   213
                do {
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   214
                    arrayDepth++;
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   215
                    component = component.getComponentType();
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   216
                } while (component.isArray());
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   217
                sb.append(component.getName());
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   218
            } else {
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   219
                // Class modifiers are a superset of interface modifiers
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   220
                int modifiers = getModifiers() & Modifier.classModifiers();
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   221
                if (modifiers != 0) {
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   222
                    sb.append(Modifier.toString(modifiers));
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   223
                    sb.append(' ');
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   224
                }
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   225
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   226
                if (isAnnotation()) {
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   227
                    sb.append('@');
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   228
                }
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   229
                if (isInterface()) { // Note: all annotation types are interfaces
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   230
                    sb.append("interface");
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   231
                } else {
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   232
                    if (isEnum())
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   233
                        sb.append("enum");
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   234
                    else
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   235
                        sb.append("class");
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   236
                }
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   237
                sb.append(' ');
28519
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   238
                sb.append(getName());
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   239
            }
28519
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   240
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   241
            TypeVariable<?>[] typeparms = component.getTypeParameters();
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   242
            if (typeparms.length > 0) {
39731
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 38951
diff changeset
   243
                StringJoiner sj = new StringJoiner(",", "<", ">");
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   244
                for(TypeVariable<?> typeparm: typeparms) {
39731
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 38951
diff changeset
   245
                    sj.add(typeparm.getTypeName());
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   246
                }
39731
7a4bc90065bd 8161500: Use getTypeName and StringJoiner in core reflection toString methods
darcy
parents: 38951
diff changeset
   247
                sb.append(sj.toString());
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   248
            }
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   249
28519
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   250
            for (int i = 0; i < arrayDepth; i++)
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   251
                sb.append("[]");
299787d4cf96 8060077: Class.toGenericString specification doesn't mention array types
darcy
parents: 28059
diff changeset
   252
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   253
            return sb.toString();
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   254
        }
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
   255
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * Returns the {@code Class} object associated with the class or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * interface with the given string name.  Invoking this method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * equivalent to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *  {@code Class.forName(className, true, currentLoader)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * where {@code currentLoader} denotes the defining class loader of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * the current class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * <p> For example, the following code fragment returns the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * runtime {@code Class} descriptor for the class named
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * {@code java.lang.Thread}:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *   {@code Class t = Class.forName("java.lang.Thread")}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * A call to {@code forName("X")} causes the class named
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * {@code X} to be initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * @param      className   the fully qualified name of the desired class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * @return     the {@code Class} object for the class with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *             specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * @exception LinkageError if the linkage fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @exception ExceptionInInitializerError if the initialization provoked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     *            by this method fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * @exception ClassNotFoundException if the class cannot be located
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
   288
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    public static Class<?> forName(String className)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                throws ClassNotFoundException {
27072
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   291
        Class<?> caller = Reflection.getCallerClass();
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   292
        return forName0(className, true, ClassLoader.getClassLoader(caller), caller);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * Returns the {@code Class} object associated with the class or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * interface with the given string name, using the given class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * Given the fully qualified name for a class or interface (in the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * format returned by {@code getName}) this method attempts to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * locate, load, and link the class or interface.  The specified class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * loader is used to load the class or interface.  If the parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * {@code loader} is null, the class is loaded through the bootstrap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * class loader.  The class is initialized only if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * {@code initialize} parameter is {@code true} and if it has
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * not been initialized earlier.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * <p> If {@code name} denotes a primitive type or void, an attempt
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * will be made to locate a user-defined class in the unnamed package whose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * name is {@code name}. Therefore, this method cannot be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * obtain any of the {@code Class} objects representing primitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * types or void.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * <p> If {@code name} denotes an array class, the component type of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * the array class is loaded but not initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * <p> For example, in an instance method the expression:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *  {@code Class.forName("Foo")}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * is equivalent to:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     *  {@code Class.forName("Foo", true, this.getClass().getClassLoader())}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * Note that this method throws errors related to loading, linking or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * initializing as specified in Sections 12.2, 12.3 and 12.4 of <em>The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * Java Language Specification</em>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * Note that this method does not check whether the requested class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * is accessible to its caller.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * @param name       fully qualified name of the desired class
13589
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 11536
diff changeset
   336
     * @param initialize if {@code true} the class will be initialized.
da4cb574f4a6 7193339: Prepare system classes be defined by a non-null module loader
mchung
parents: 11536
diff changeset
   337
     *                   See Section 12.4 of <em>The Java Language Specification</em>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * @param loader     class loader from which the class must be loaded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @return           class object representing the desired class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * @exception LinkageError if the linkage fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @exception ExceptionInInitializerError if the initialization provoked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *            by this method fails
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @exception ClassNotFoundException if the class cannot be located by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *            the specified class loader
40536
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   346
     * @exception SecurityException
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   347
     *            if a security manager is present, and the {@code loader} is
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   348
     *            {@code null}, and the caller's class loader is not
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   349
     *            {@code null}, and the caller does not have the
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   350
     *            {@link RuntimePermission}{@code ("getClassLoader")}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * @see       java.lang.Class#forName(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @see       java.lang.ClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @since     1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
   356
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    public static Class<?> forName(String name, boolean initialize,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                                   ClassLoader loader)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        throws ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    {
27072
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   361
        Class<?> caller = null;
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   362
        SecurityManager sm = System.getSecurityManager();
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   363
        if (sm != null) {
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   364
            // Reflective call to get caller class is only needed if a security manager
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   365
            // is present.  Avoid the overhead of making this call otherwise.
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   366
            caller = Reflection.getCallerClass();
34882
ce2a8ec851c1 8145544: Move sun.misc.VM to jdk.internal.misc
chegar
parents: 34774
diff changeset
   367
            if (VM.isSystemDomainLoader(loader)) {
27072
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   368
                ClassLoader ccl = ClassLoader.getClassLoader(caller);
34882
ce2a8ec851c1 8145544: Move sun.misc.VM to jdk.internal.misc
chegar
parents: 34774
diff changeset
   369
                if (!VM.isSystemDomainLoader(ccl)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                    sm.checkPermission(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                        SecurityConstants.GET_CLASSLOADER_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        }
27072
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   375
        return forName0(name, initialize, loader, caller);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
27072
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   378
    /** Called after security check for system loader access checks have been made. */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
   379
    private static native Class<?> forName0(String name, boolean initialize,
27072
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   380
                                            ClassLoader loader,
ced3a76913f3 8015256: Better class accessibility
coleenp
parents: 26219
diff changeset
   381
                                            Class<?> caller)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        throws ClassNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   384
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   385
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   386
     * Returns the {@code Class} with the given <a href="ClassLoader.html#name">
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   387
     * binary name</a> in the given module.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   388
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   389
     * <p> This method attempts to locate, load, and link the class or interface.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   390
     * It does not run the class initializer.  If the class is not found, this
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   391
     * method returns {@code null}. </p>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   392
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   393
     * <p> If the class loader of the given module defines other modules and
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   394
     * the given name is a class defined in a different module, this method
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   395
     * returns {@code null} after the class is loaded. </p>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   396
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   397
     * <p> This method does not check whether the requested class is
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   398
     * accessible to its caller. </p>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   399
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   400
     * @apiNote
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   401
     * This method returns {@code null} on failure rather than
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   402
     * throwing a {@link ClassNotFoundException}, as is done by
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   403
     * the {@link #forName(String, boolean, ClassLoader)} method.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   404
     * The security check is a stack-based permission check if the caller
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   405
     * loads a class in another module.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   406
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   407
     * @param  module   A module
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   408
     * @param  name     The <a href="ClassLoader.html#name">binary name</a>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   409
     *                  of the class
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   410
     * @return {@code Class} object of the given name defined in the given module;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   411
     *         {@code null} if not found.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   412
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   413
     * @throws NullPointerException if the given module or name is {@code null}
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   414
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   415
     * @throws LinkageError if the linkage fails
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   416
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   417
     * @throws SecurityException
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   418
     *         <ul>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   419
     *         <li> if the caller is not the specified module and
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   420
     *         {@code RuntimePermission("getClassLoader")} permission is denied; or</li>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   421
     *         <li> access to the module content is denied. For example,
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   422
     *         permission check will be performed when a class loader calls
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   423
     *         {@link ModuleReader#open(String)} to read the bytes of a class file
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   424
     *         in a module.</li>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   425
     *         </ul>
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   426
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   427
     * @since 9
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   428
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   429
    @CallerSensitive
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   430
    public static Class<?> forName(Module module, String name) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   431
        Objects.requireNonNull(module);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   432
        Objects.requireNonNull(name);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   433
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   434
        Class<?> caller = Reflection.getCallerClass();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   435
        if (caller != null && caller.getModule() != module) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   436
            // if caller is null, Class.forName is the last java frame on the stack.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   437
            // java.base has all permissions
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   438
            SecurityManager sm = System.getSecurityManager();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   439
            if (sm != null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   440
                sm.checkPermission(SecurityConstants.GET_CLASSLOADER_PERMISSION);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   441
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   442
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   443
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   444
        PrivilegedAction<ClassLoader> pa = module::getClassLoader;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   445
        ClassLoader cl = AccessController.doPrivileged(pa);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   446
        if (cl != null) {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
   447
            return cl.loadClass(module, name);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   448
        } else {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
   449
            return BootLoader.loadClass(module, name);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   450
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   451
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   452
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * Creates a new instance of the class represented by this {@code Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * object.  The class is instantiated as if by a {@code new}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * expression with an empty argument list.  The class is initialized if it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * has not already been initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *
37782
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 37363
diff changeset
   459
     * @deprecated This method propagates any exception thrown by the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * nullary constructor, including a checked exception.  Use of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * this method effectively bypasses the compile-time exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * checking that would otherwise be performed by the compiler.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * The {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * java.lang.reflect.Constructor#newInstance(java.lang.Object...)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * Constructor.newInstance} method avoids this problem by wrapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * any exception thrown by the constructor in a (checked) {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * java.lang.reflect.InvocationTargetException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     *
38951
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   469
     * <p>The call
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   470
     *
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   471
     * <pre>{@code
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   472
     * clazz.newInstance()
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   473
     * }</pre>
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   474
     *
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   475
     * can be replaced by
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   476
     *
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   477
     * <pre>{@code
41891
92539b6985a5 8168681: Correct deprecation text for Class.newInstance
darcy
parents: 41560
diff changeset
   478
     * clazz.getDeclaredConstructor().newInstance()
38951
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   479
     * }</pre>
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   480
     *
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   481
     * The latter sequence of calls is inferred to be able to throw
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   482
     * the additional exception types {@link
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   483
     * InvocationTargetException} and {@link
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   484
     * NoSuchMethodException}. Both of these exception types are
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   485
     * subclasses of {@link ReflectiveOperationException}.
077499b63957 8159330: Improve deprecation text for Class.newInstance
darcy
parents: 37782
diff changeset
   486
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   487
     * @return  a newly allocated instance of the class represented by this
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   488
     *          object.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   489
     * @throws  IllegalAccessException  if the class or its nullary
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   490
     *          constructor is not accessible.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   491
     * @throws  InstantiationException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   492
     *          if this {@code Class} represents an abstract class,
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   493
     *          an interface, an array class, a primitive type, or void;
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   494
     *          or if the class has no nullary constructor;
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   495
     *          or if the instantiation fails for some other reason.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   496
     * @throws  ExceptionInInitializerError if the initialization
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   497
     *          provoked by this method fails.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   498
     * @throws  SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   499
     *          If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   500
     *          the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   501
     *          ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   502
     *          invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   503
     *          s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
   504
     *          of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
   506
    @CallerSensitive
37782
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 37363
diff changeset
   507
    @Deprecated(since="9")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    public T newInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        throws InstantiationException, IllegalAccessException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        if (System.getSecurityManager() != null) {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
   512
            checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        // NOTE: the following code may not be strictly correct under
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        // the current Java memory model.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        // Constructor lookup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        if (cachedConstructor == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            if (this == Class.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                throw new IllegalAccessException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                    "Can not call newInstance() on the Class for java.lang.Class"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            try {
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
   526
                Class<?>[] empty = {};
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
   527
                final Constructor<T> c = getReflectionFactory().copyConstructor(
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
   528
                    getConstructor0(empty, Member.DECLARED));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                // Disable accessibility checks on the constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                // since we have to do the security check here anyway
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                // (the stack depth is wrong for the Constructor's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                // security check to work)
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   533
                java.security.AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29113
diff changeset
   534
                    new java.security.PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
   535
                        public Void run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
                                c.setAccessible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                cachedConstructor = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
            } catch (NoSuchMethodException e) {
10147
cd5c99f94305 6380161: (reflect) Exception from newInstance() not chained to cause.
darcy
parents: 10142
diff changeset
   542
                throw (InstantiationException)
cd5c99f94305 6380161: (reflect) Exception from newInstance() not chained to cause.
darcy
parents: 10142
diff changeset
   543
                    new InstantiationException(getName()).initCause(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        Constructor<T> tmpConstructor = cachedConstructor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        // Security check (same as in java.lang.reflect.Constructor)
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   548
        Class<?> caller = Reflection.getCallerClass();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   549
        if (newInstanceCallerCache != caller) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   550
            int modifiers = tmpConstructor.getModifiers();
41560
a66e7ee16cf9 6378384: (reflect) subclass can’t access superclass’s protected fields and methods by reflection
plevart
parents: 40536
diff changeset
   551
            Reflection.ensureMemberAccess(caller, this, this, modifiers);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   552
            newInstanceCallerCache = caller;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        // Run constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            return tmpConstructor.newInstance((Object[])null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            Unsafe.getUnsafe().throwException(e.getTargetException());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            // Not reached
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    }
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
   563
    private transient volatile Constructor<T> cachedConstructor;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
   564
    private transient volatile Class<?>       newInstanceCallerCache;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * Determines if the specified {@code Object} is assignment-compatible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * with the object represented by this {@code Class}.  This method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * the dynamic equivalent of the Java language {@code instanceof}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * operator. The method returns {@code true} if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * {@code Object} argument is non-null and can be cast to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * reference type represented by this {@code Class} object without
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * raising a {@code ClassCastException.} It returns {@code false}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * <p> Specifically, if this {@code Class} object represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * declared class, this method returns {@code true} if the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * {@code Object} argument is an instance of the represented class (or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * of any of its subclasses); it returns {@code false} otherwise. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * this {@code Class} object represents an array class, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * returns {@code true} if the specified {@code Object} argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * can be converted to an object of the array class by an identity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * conversion or by a widening reference conversion; it returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * {@code false} otherwise. If this {@code Class} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * represents an interface, this method returns {@code true} if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * class or any superclass of the specified {@code Object} argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * implements this interface; it returns {@code false} otherwise. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * this {@code Class} object represents a primitive type, this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * returns {@code false}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * @param   obj the object to check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * @return  true if {@code obj} is an instance of this class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   595
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
   597
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    public native boolean isInstance(Object obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * Determines if the class or interface represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * {@code Class} object is either the same as, or is a superclass or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * superinterface of, the class or interface represented by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * {@code Class} parameter. It returns {@code true} if so;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * otherwise it returns {@code false}. If this {@code Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * object represents a primitive type, this method returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * {@code true} if the specified {@code Class} parameter is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * exactly this {@code Class} object; otherwise it returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * {@code false}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * <p> Specifically, this method tests whether the type represented by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * specified {@code Class} parameter can be converted to the type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * represented by this {@code Class} object via an identity conversion
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * or via a widening reference conversion. See <em>The Java Language
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * Specification</em>, sections 5.1.1 and 5.1.4 , for details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * @param cls the {@code Class} object to be checked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * @return the {@code boolean} value indicating whether objects of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * type {@code cls} can be assigned to objects of this class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * @exception NullPointerException if the specified Class parameter is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     *            null.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   623
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
   625
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    public native boolean isAssignableFrom(Class<?> cls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * Determines if the specified {@code Class} object represents an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * interface type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * @return  {@code true} if this object represents an interface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     *          {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
   636
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    public native boolean isInterface();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     * Determines if this {@code Class} object represents an array class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * @return  {@code true} if this object represents an array class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     *          {@code false} otherwise.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   645
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
   647
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    public native boolean isArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * Determines if the specified {@code Class} object represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * primitive type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * <p> There are nine predefined {@code Class} objects to represent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * the eight primitive types and void.  These are created by the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * Virtual Machine, and have the same names as the primitive types that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * they represent, namely {@code boolean}, {@code byte},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * {@code char}, {@code short}, {@code int},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * {@code long}, {@code float}, and {@code double}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * <p> These objects may only be accessed via the following public static
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * final variables, and are the only {@code Class} objects for which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * this method returns {@code true}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * @return true if and only if this class represents a primitive type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * @see     java.lang.Boolean#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * @see     java.lang.Character#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * @see     java.lang.Byte#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * @see     java.lang.Short#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * @see     java.lang.Integer#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * @see     java.lang.Long#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * @see     java.lang.Float#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * @see     java.lang.Double#TYPE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * @see     java.lang.Void#TYPE
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
   677
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
   679
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
    public native boolean isPrimitive();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * Returns true if this {@code Class} object represents an annotation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * type.  Note that if this method returns true, {@link #isInterface()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * would also return true, as all annotation types are also interfaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * @return {@code true} if this class object represents an annotation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     *      type; {@code false} otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
    public boolean isAnnotation() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        return (getModifiers() & ANNOTATION) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * Returns {@code true} if this class is a synthetic class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * returns {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * @return {@code true} if and only if this class is a synthetic class as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     *         defined by the Java Language Specification.
14910
337380568515 8005097: Tie isSynthetic javadoc to the JLS
darcy
parents: 14676
diff changeset
   700
     * @jls 13.1 The Form of a Binary
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    public boolean isSynthetic() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        return (getModifiers() & SYNTHETIC) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * Returns the  name of the entity (class, interface, array class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * primitive type, or void) represented by this {@code Class} object,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * as a {@code String}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * <p> If this class object represents a reference type that is not an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * array type then the binary name of the class is returned, as specified
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   714
     * by
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   715
     * <cite>The Java&trade; Language Specification</cite>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * <p> If this class object represents a primitive type or void, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     * name returned is a {@code String} equal to the Java language
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     * keyword corresponding to the primitive type or void.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * <p> If this class object represents a class of arrays, then the internal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * form of the name consists of the name of the element type preceded by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * one or more '{@code [}' characters representing the depth of the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * nesting.  The encoding of element type names is as follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * <blockquote><table summary="Element types and encodings">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * <tr><th> Element Type <th> &nbsp;&nbsp;&nbsp; <th> Encoding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * <tr><td> boolean      <td> &nbsp;&nbsp;&nbsp; <td align=center> Z
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     * <tr><td> byte         <td> &nbsp;&nbsp;&nbsp; <td align=center> B
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * <tr><td> char         <td> &nbsp;&nbsp;&nbsp; <td align=center> C
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * <tr><td> class or interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     *                       <td> &nbsp;&nbsp;&nbsp; <td align=center> L<i>classname</i>;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * <tr><td> double       <td> &nbsp;&nbsp;&nbsp; <td align=center> D
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * <tr><td> float        <td> &nbsp;&nbsp;&nbsp; <td align=center> F
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * <tr><td> int          <td> &nbsp;&nbsp;&nbsp; <td align=center> I
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * <tr><td> long         <td> &nbsp;&nbsp;&nbsp; <td align=center> J
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * <tr><td> short        <td> &nbsp;&nbsp;&nbsp; <td align=center> S
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * </table></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     * <p> The class or interface name <i>classname</i> is the binary name of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * the class specified above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * <p> Examples:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     * String.class.getName()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     *     returns "java.lang.String"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
     * byte.class.getName()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     *     returns "byte"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * (new Object[3]).getClass().getName()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     *     returns "[Ljava.lang.Object;"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * (new int[3][4][5][6][7][8][9]).getClass().getName()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     *     returns "[[[[[[[I"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * @return  the name of the class or interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     *          represented by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    public String getName() {
3845
55b55f4c43d0 6881442: (reflect) Race condition in Class.getName()
martin
parents: 3219
diff changeset
   759
        String name = this.name;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        if (name == null)
3845
55b55f4c43d0 6881442: (reflect) Race condition in Class.getName()
martin
parents: 3219
diff changeset
   761
            this.name = name = getName0();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    // cache the name to reduce the number of calls into the VM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
    private transient String name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    private native String getName0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * Returns the class loader for the class.  Some implementations may use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * null to represent the bootstrap class loader. This method will return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * null in such implementations if this class was loaded by the bootstrap
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     * class loader.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * <p>If this object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * represents a primitive type or void, null is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     * @return  the class loader that loaded the class or interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     *          represented by this object.
40536
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   780
     * @throws  SecurityException
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   781
     *          if a security manager is present, and the caller's class loader
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   782
     *          is not {@code null} and is not the same as or an ancestor of the
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   783
     *          class loader for the class whose class loader is requested,
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   784
     *          and the caller does not have the
8ea134098b80 7180225: SecurityExceptions not defined in some class loader methods
bchristi
parents: 40175
diff changeset
   785
     *          {@link RuntimePermission}{@code ("getClassLoader")}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * @see java.lang.ClassLoader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * @see SecurityManager#checkPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * @see java.lang.RuntimePermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
   790
    @CallerSensitive
40175
8df87018d96a 8161379: Force inline methods calling Reflection.getCallerClass
redestad
parents: 39731
diff changeset
   791
    @ForceInline // to ensure Reflection.getCallerClass optimization
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    public ClassLoader getClassLoader() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        ClassLoader cl = getClassLoader0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        if (cl == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        if (sm != null) {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
   798
            ClassLoader.checkClassLoaderPermission(cl, Reflection.getCallerClass());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        return cl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    // Package-private to allow ClassLoader access
25392
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   804
    ClassLoader getClassLoader0() { return classLoader; }
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   805
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   806
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   807
     * Returns the module that this class or interface is a member of.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   808
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   809
     * If this class represents an array type then this method returns the
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   810
     * {@code Module} for the element type. If this class represents a
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   811
     * primitive type or void, then the {@code Module} object for the
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   812
     * {@code java.base} module is returned.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   813
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   814
     * If this class is in an unnamed module then the {@link
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   815
     * ClassLoader#getUnnamedModule() unnamed} {@code Module} of the class
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   816
     * loader for this class is returned.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   817
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   818
     * @return the module that this class or interface is a member of
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   819
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   820
     * @since 9
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   821
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   822
    public Module getModule() {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   823
        return module;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   824
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   825
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   826
    // set by VM
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   827
    private transient Module module;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   828
25392
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   829
    // Initialized in JVM not by private constructor
27783
6317ec69db47 8065552: setAccessible(true) on fields of Class may throw a SecurityException
dfuchs
parents: 27730
diff changeset
   830
    // This field is filtered from reflection access, i.e. getDeclaredField
6317ec69db47 8065552: setAccessible(true) on fields of Class may throw a SecurityException
dfuchs
parents: 27730
diff changeset
   831
    // will throw NoSuchFieldException
25392
0eabdbb887aa 6642881: Improve performance of Class.getClassLoader()
coleenp
parents: 24867
diff changeset
   832
    private final ClassLoader classLoader;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
     * Returns an array of {@code TypeVariable} objects that represent the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     * type variables declared by the generic declaration represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     * {@code GenericDeclaration} object, in declaration order.  Returns an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     * array of length 0 if the underlying generic declaration declares no type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * variables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     * @return an array of {@code TypeVariable} objects that represent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     *     the type variables declared by this generic declaration
3219
a348b237cbf8 6857803: Missing links to exceptions in javadoc for Class.getGeneric{Superclass, Interfaces}
darcy
parents: 2448
diff changeset
   843
     * @throws java.lang.reflect.GenericSignatureFormatError if the generic
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     *     signature of this generic declaration does not conform to
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   845
     *     the format specified in
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   846
     *     <cite>The Java&trade; Virtual Machine Specification</cite>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     */
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
   849
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
    public TypeVariable<Class<T>>[] getTypeParameters() {
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   851
        ClassRepository info = getGenericInfo();
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   852
        if (info != null)
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   853
            return (TypeVariable<Class<T>>[])info.getTypeParameters();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        else
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
   855
            return (TypeVariable<Class<T>>[])new TypeVariable<?>[0];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
    /**
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   860
     * Returns the {@code Class} representing the direct superclass of the
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   861
     * entity (class, interface, primitive type or void) represented by
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   862
     * this {@code Class}.  If this {@code Class} represents either the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * {@code Object} class, an interface, a primitive type, or void, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     * null is returned.  If this object represents an array class then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * {@code Class} object representing the {@code Object} class is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   868
     * @return the direct superclass of the class represented by this object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
   870
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    public native Class<? super T> getSuperclass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
     * Returns the {@code Type} representing the direct superclass of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
     * the entity (class, interface, primitive type or void) represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * this {@code Class}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * <p>If the superclass is a parameterized type, the {@code Type}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     * object returned must accurately reflect the actual type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     * parameters used in the source code. The parameterized type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * representing the superclass is created if it had not been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     * created before. See the declaration of {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     * java.lang.reflect.ParameterizedType ParameterizedType} for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
     * semantics of the creation process for parameterized types.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
     * this {@code Class} represents either the {@code Object}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
     * class, an interface, a primitive type, or void, then null is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
     * returned.  If this object represents an array class then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
     * {@code Class} object representing the {@code Object} class is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     *
3219
a348b237cbf8 6857803: Missing links to exceptions in javadoc for Class.getGeneric{Superclass, Interfaces}
darcy
parents: 2448
diff changeset
   892
     * @throws java.lang.reflect.GenericSignatureFormatError if the generic
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   893
     *     class signature does not conform to the format specified in
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
   894
     *     <cite>The Java&trade; Virtual Machine Specification</cite>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * @throws TypeNotPresentException if the generic superclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     *     refers to a non-existent type declaration
3219
a348b237cbf8 6857803: Missing links to exceptions in javadoc for Class.getGeneric{Superclass, Interfaces}
darcy
parents: 2448
diff changeset
   897
     * @throws java.lang.reflect.MalformedParameterizedTypeException if the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     *     generic superclass refers to a parameterized type that cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     *     instantiated  for any reason
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   900
     * @return the direct superclass of the class represented by this object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    public Type getGenericSuperclass() {
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   904
        ClassRepository info = getGenericInfo();
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   905
        if (info == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            return getSuperclass();
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   907
        }
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   908
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   909
        // Historical irregularity:
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   910
        // Generic signature marks interfaces with superclass = Object
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   911
        // but this API returns null for interfaces
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   912
        if (isInterface()) {
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   913
            return null;
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   914
        }
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   915
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
   916
        return info.getSuperclass();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   920
     * Gets the package of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     *
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   922
     * <p>If this class represents an array type, a primitive type or void,
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   923
     * this method returns {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     *
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   925
     * @return the package of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    public Package getPackage() {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   928
        if (isPrimitive() || isArray()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   929
            return null;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   930
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   931
        ClassLoader cl = getClassLoader0();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   932
        return cl != null ? cl.definePackage(this)
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   933
                          : BootLoader.definePackage(this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   936
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   937
     * Returns the fully qualified package name.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   938
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   939
     * <p> If this class is a top level class, then this method returns the fully
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   940
     * qualified name of the package that the class is a member of, or the
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   941
     * empty string if the class is in an unnamed package.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   942
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   943
     * <p> If this class is a member class, then this method is equivalent to
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   944
     * invoking {@code getPackageName()} on the {@link #getEnclosingClass
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   945
     * enclosing class}.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   946
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   947
     * <p> If this class is a {@link #isLocalClass local class} or an {@link
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   948
     * #isAnonymousClass() anonymous class}, then this method is equivalent to
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   949
     * invoking {@code getPackageName()} on the {@link #getDeclaringClass
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   950
     * declaring class} of the {@link #getEnclosingMethod enclosing method} or
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   951
     * {@link #getEnclosingConstructor enclosing constructor}.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   952
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   953
     * <p> This method returns {@code null} if this class represents an array type,
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   954
     * a primitive type or void.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   955
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   956
     * @return the fully qualified package name
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   957
     *
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   958
     * @since 9
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   959
     * @jls 6.7  Fully Qualified Names
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   960
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   961
    public String getPackageName() {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   962
        String pn = this.packageName;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   963
        if (pn == null && !isArray() && !isPrimitive()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   964
            String cn = getName();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   965
            int dot = cn.lastIndexOf('.');
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   966
            pn = (dot != -1) ? cn.substring(0, dot).intern() : "";
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   967
            this.packageName = pn;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   968
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   969
        return pn;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   970
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   971
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   972
    // cached package name
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
   973
    private transient String packageName;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    /**
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   976
     * Returns the interfaces directly implemented by the class or interface
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * represented by this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   979
     * <p>If this object represents a class, the return value is an array
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   980
     * containing objects representing all interfaces directly implemented by
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   981
     * the class.  The order of the interface objects in the array corresponds
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   982
     * to the order of the interface names in the {@code implements} clause of
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   983
     * the declaration of the class represented by this object.  For example,
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
   984
     * given the declaration:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     * {@code class Shimmer implements FloorWax, DessertTopping { ... }}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * suppose the value of {@code s} is an instance of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * {@code Shimmer}; the value of the expression:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     * {@code s.getClass().getInterfaces()[0]}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * is the {@code Class} object that represents interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     * {@code FloorWax}; and the value of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     * {@code s.getClass().getInterfaces()[1]}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     * is the {@code Class} object that represents interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     * {@code DessertTopping}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1001
     * <p>If this object represents an interface, the array contains objects
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1002
     * representing all interfaces directly extended by the interface.  The
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1003
     * order of the interface objects in the array corresponds to the order of
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1004
     * the interface names in the {@code extends} clause of the declaration of
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1005
     * the interface represented by this object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1007
     * <p>If this object represents a class or interface that implements no
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     * interfaces, the method returns an array of length 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1010
     * <p>If this object represents a primitive type or void, the method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     * returns an array of length 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1013
     * <p>If this {@code Class} object represents an array type, the
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1014
     * interfaces {@code Cloneable} and {@code java.io.Serializable} are
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1015
     * returned in that order.
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1016
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1017
     * @return an array of interfaces directly implemented by this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     */
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1019
    public Class<?>[] getInterfaces() {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1020
        // defensively copy before handing over to user code
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1021
        return getInterfaces(true);
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1022
    }
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1023
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1024
    private Class<?>[] getInterfaces(boolean cloneArray) {
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1025
        ReflectionData<T> rd = reflectionData();
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1026
        if (rd == null) {
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1027
            // no cloning required
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1028
            return getInterfaces0();
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1029
        } else {
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1030
            Class<?>[] interfaces = rd.interfaces;
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1031
            if (interfaces == null) {
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1032
                interfaces = getInterfaces0();
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1033
                rd.interfaces = interfaces;
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1034
            }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1035
            // defensively copy if requested
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1036
            return cloneArray ? interfaces.clone() : interfaces;
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1037
        }
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1038
    }
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1039
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1040
    private native Class<?>[] getInterfaces0();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
     * Returns the {@code Type}s representing the interfaces
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
     * directly implemented by the class or interface represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
     * this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     * <p>If a superinterface is a parameterized type, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
     * {@code Type} object returned for it must accurately reflect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
     * the actual type parameters used in the source code. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
     * parameterized type representing each superinterface is created
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
     * if it had not been created before. See the declaration of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
     * {@link java.lang.reflect.ParameterizedType ParameterizedType}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
     * for the semantics of the creation process for parameterized
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
     * types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1056
     * <p>If this object represents a class, the return value is an array
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1057
     * containing objects representing all interfaces directly implemented by
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1058
     * the class.  The order of the interface objects in the array corresponds
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1059
     * to the order of the interface names in the {@code implements} clause of
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1060
     * the declaration of the class represented by this object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1062
     * <p>If this object represents an interface, the array contains objects
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1063
     * representing all interfaces directly extended by the interface.  The
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1064
     * order of the interface objects in the array corresponds to the order of
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1065
     * the interface names in the {@code extends} clause of the declaration of
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1066
     * the interface represented by this object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1068
     * <p>If this object represents a class or interface that implements no
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1069
     * interfaces, the method returns an array of length 0.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     *
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1071
     * <p>If this object represents a primitive type or void, the method
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1072
     * returns an array of length 0.
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1073
     *
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1074
     * <p>If this {@code Class} object represents an array type, the
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1075
     * interfaces {@code Cloneable} and {@code java.io.Serializable} are
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1076
     * returned in that order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     *
3219
a348b237cbf8 6857803: Missing links to exceptions in javadoc for Class.getGeneric{Superclass, Interfaces}
darcy
parents: 2448
diff changeset
  1078
     * @throws java.lang.reflect.GenericSignatureFormatError
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     *     if the generic class signature does not conform to the format
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
  1080
     *     specified in
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7803
diff changeset
  1081
     *     <cite>The Java&trade; Virtual Machine Specification</cite>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
     * @throws TypeNotPresentException if any of the generic
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
     *     superinterfaces refers to a non-existent type declaration
3219
a348b237cbf8 6857803: Missing links to exceptions in javadoc for Class.getGeneric{Superclass, Interfaces}
darcy
parents: 2448
diff changeset
  1084
     * @throws java.lang.reflect.MalformedParameterizedTypeException
a348b237cbf8 6857803: Missing links to exceptions in javadoc for Class.getGeneric{Superclass, Interfaces}
darcy
parents: 2448
diff changeset
  1085
     *     if any of the generic superinterfaces refer to a parameterized
a348b237cbf8 6857803: Missing links to exceptions in javadoc for Class.getGeneric{Superclass, Interfaces}
darcy
parents: 2448
diff changeset
  1086
     *     type that cannot be instantiated for any reason
27730
e739f0725baa 8062773: Clarifications for Class specification
martin
parents: 27719
diff changeset
  1087
     * @return an array of interfaces directly implemented by this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
    public Type[] getGenericInterfaces() {
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1091
        ClassRepository info = getGenericInfo();
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  1092
        return (info == null) ?  getInterfaces() : info.getSuperInterfaces();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * Returns the {@code Class} representing the component type of an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * array.  If this class does not represent an array class this method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     * returns null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
     * @return the {@code Class} representing the component type of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     * class if this class is an array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     * @see     java.lang.reflect.Array
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1104
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     */
25517
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1106
    public Class<?> getComponentType() {
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1107
        // Only return for array types. Storage may be reused for Class for instance types.
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1108
        if (isArray()) {
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1109
            return componentType;
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1110
        } else {
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1111
            return null;
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1112
        }
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1113
    }
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1114
f3c83ab83a16 8047737: Move array component mirror to instance of java/lang/Class
coleenp
parents: 25392
diff changeset
  1115
    private final Class<?> componentType;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     * Returns the Java language modifiers for this class or interface, encoded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
     * in an integer. The modifiers consist of the Java Virtual Machine's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
     * constants for {@code public}, {@code protected},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
     * {@code private}, {@code final}, {@code static},
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
     * {@code abstract} and {@code interface}; they should be decoded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     * using the methods of class {@code Modifier}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     * <p> If the underlying class is an array class, then its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
     * {@code public}, {@code private} and {@code protected}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     * modifiers are the same as those of its component type.  If this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * {@code Class} represents a primitive type or void, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     * {@code public} modifier is always {@code true}, and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     * {@code protected} and {@code private} modifiers are always
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * {@code false}. If this object represents an array class, a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     * primitive type or void, then its {@code final} modifier is always
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     * {@code true} and its interface modifier is always
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
     * {@code false}. The values of its other modifiers are not determined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     * by this specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
     * <p> The modifier encodings are defined in <em>The Java Virtual Machine
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
     * Specification</em>, table 4.1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     * @return the {@code int} representing the modifiers for this class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     * @see     java.lang.reflect.Modifier
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1143
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
  1145
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
    public native int getModifiers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     * Gets the signers of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
     * @return  the signers of this class, or null if there are no signers.  In
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     *          particular, this method returns null if this object represents
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     *          a primitive type or void.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1155
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
    public native Object[] getSigners();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * Set the signers of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
    native void setSigners(Object[] signers);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * If this {@code Class} object represents a local or anonymous
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
     * class within a method, returns a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
     * java.lang.reflect.Method Method} object representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     * immediately enclosing method of the underlying class. Returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     * {@code null} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
     * In particular, this method returns {@code null} if the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
     * class is a local or anonymous class immediately enclosed by a type
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
     * declaration, instance initializer or static initializer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
     * @return the immediately enclosing method of the underlying class, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
     *     that class is a local or anonymous class; otherwise {@code null}.
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1179
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1180
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1181
     *         If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1182
     *         following conditions is met:
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1183
     *
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1184
     *         <ul>
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1185
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1186
     *         <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1187
     *         class loader of the enclosing class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1188
     *         {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1189
     *         s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1190
     *         {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1191
     *         denies access to the methods within the enclosing class
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1192
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1193
     *         <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1194
     *         ancestor of the class loader for the enclosing class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1195
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1196
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1197
     *         of the enclosing class
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1198
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1199
     *         </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     */
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1202
    @CallerSensitive
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1203
    public Method getEnclosingMethod() throws SecurityException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        EnclosingMethodInfo enclosingInfo = getEnclosingMethodInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
        if (enclosingInfo == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
            if (!enclosingInfo.isMethod())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
            MethodRepository typeInfo = MethodRepository.make(enclosingInfo.getDescriptor(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
                                                              getFactory());
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  1214
            Class<?>   returnType       = toClass(typeInfo.getReturnType());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
            Type []    parameterTypes   = typeInfo.getParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
            Class<?>[] parameterClasses = new Class<?>[parameterTypes.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
            // Convert Types to Classes; returned types *should*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
            // be class objects since the methodDescriptor's used
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
            // don't have generics information
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
            for(int i = 0; i < parameterClasses.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
                parameterClasses[i] = toClass(parameterTypes[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1224
            // Perform access check
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1225
            final Class<?> enclosingCandidate = enclosingInfo.getEnclosingClass();
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1226
            enclosingCandidate.checkMemberAccess(Member.DECLARED,
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1227
                                                 Reflection.getCallerClass(), true);
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1228
            // Client is ok to access declared methods but j.l.Class might not be.
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1229
            Method[] candidates = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29113
diff changeset
  1230
                    new PrivilegedAction<>() {
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1231
                        @Override
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1232
                        public Method[] run() {
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1233
                            return enclosingCandidate.getDeclaredMethods();
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1234
                        }
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1235
                    });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
             * Loop over all declared methods; match method name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
             * number of and type of parameters, *and* return
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
             * type.  Matching return type is also necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
             * because of covariant returns, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
             */
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1242
            for(Method m: candidates) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
                if (m.getName().equals(enclosingInfo.getName()) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
                    Class<?>[] candidateParamClasses = m.getParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
                    if (candidateParamClasses.length == parameterClasses.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
                        boolean matches = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
                        for(int i = 0; i < candidateParamClasses.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
                            if (!candidateParamClasses[i].equals(parameterClasses[i])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
                                matches = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
                        if (matches) { // finally, check return type
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
                            if (m.getReturnType().equals(returnType) )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
                                return m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
            throw new InternalError("Enclosing method not found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
    private native Object[] getEnclosingMethod0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
    private EnclosingMethodInfo getEnclosingMethodInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
        Object[] enclosingInfo = getEnclosingMethod0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
        if (enclosingInfo == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
            return new EnclosingMethodInfo(enclosingInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
  1277
    private static final class EnclosingMethodInfo {
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1278
        private final Class<?> enclosingClass;
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1279
        private final String name;
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1280
        private final String descriptor;
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1281
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1282
        static void validate(Object[] enclosingInfo) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
            if (enclosingInfo.length != 3)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
                throw new InternalError("Malformed enclosing method information");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
                // The array is expected to have three elements:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
                // the immediately enclosing class
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1289
                Class<?> enclosingClass = (Class<?>)enclosingInfo[0];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
                assert(enclosingClass != null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
                // the immediately enclosing method or constructor's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
                // name (can be null).
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1294
                String name = (String)enclosingInfo[1];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
                // the immediately enclosing method or constructor's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
                // descriptor (null iff name is).
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1298
                String descriptor = (String)enclosingInfo[2];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
                assert((name != null && descriptor != null) || name == descriptor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
            } catch (ClassCastException cce) {
10419
12c063b39232 7084245: Update usages of InternalError to use exception chaining
sherman
parents: 10147
diff changeset
  1301
                throw new InternalError("Invalid type in enclosing method information", cce);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1305
        EnclosingMethodInfo(Object[] enclosingInfo) {
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1306
            validate(enclosingInfo);
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1307
            this.enclosingClass = (Class<?>)enclosingInfo[0];
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1308
            this.name = (String)enclosingInfo[1];
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1309
            this.descriptor = (String)enclosingInfo[2];
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1310
        }
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1311
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
        boolean isPartial() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
            return enclosingClass == null || name == null || descriptor == null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
        boolean isConstructor() { return !isPartial() && "<init>".equals(name); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
        boolean isMethod() { return !isPartial() && !isConstructor() && !"<clinit>".equals(name); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
        Class<?> getEnclosingClass() { return enclosingClass; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
        String getName() { return name; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
        String getDescriptor() { return descriptor; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  1328
    private static Class<?> toClass(Type o) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
        if (o instanceof GenericArrayType)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
            return Array.newInstance(toClass(((GenericArrayType)o).getGenericComponentType()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
                                     0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
                .getClass();
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  1333
        return (Class<?>)o;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
     * If this {@code Class} object represents a local or anonymous
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
     * class within a constructor, returns a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     * java.lang.reflect.Constructor Constructor} object representing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     * the immediately enclosing constructor of the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     * class. Returns {@code null} otherwise.  In particular, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     * method returns {@code null} if the underlying class is a local
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
     * or anonymous class immediately enclosed by a type declaration,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
     * instance initializer or static initializer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
     * @return the immediately enclosing constructor of the underlying class, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
     *     that class is a local or anonymous class; otherwise {@code null}.
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1348
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1349
     *         If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1350
     *         following conditions is met:
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1351
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1352
     *         <ul>
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1353
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1354
     *         <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1355
     *         class loader of the enclosing class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1356
     *         {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1357
     *         s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1358
     *         {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1359
     *         denies access to the constructors within the enclosing class
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1360
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1361
     *         <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1362
     *         ancestor of the class loader for the enclosing class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1363
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1364
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1365
     *         of the enclosing class
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1366
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1367
     *         </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
     */
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1370
    @CallerSensitive
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1371
    public Constructor<?> getEnclosingConstructor() throws SecurityException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
        EnclosingMethodInfo enclosingInfo = getEnclosingMethodInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
        if (enclosingInfo == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
            if (!enclosingInfo.isConstructor())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
            ConstructorRepository typeInfo = ConstructorRepository.make(enclosingInfo.getDescriptor(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
                                                                        getFactory());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
            Type []    parameterTypes   = typeInfo.getParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
            Class<?>[] parameterClasses = new Class<?>[parameterTypes.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
            // Convert Types to Classes; returned types *should*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
            // be class objects since the methodDescriptor's used
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
            // don't have generics information
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
            for(int i = 0; i < parameterClasses.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
                parameterClasses[i] = toClass(parameterTypes[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1391
            // Perform access check
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1392
            final Class<?> enclosingCandidate = enclosingInfo.getEnclosingClass();
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1393
            enclosingCandidate.checkMemberAccess(Member.DECLARED,
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1394
                                                 Reflection.getCallerClass(), true);
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1395
            // Client is ok to access declared methods but j.l.Class might not be.
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1396
            Constructor<?>[] candidates = AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29113
diff changeset
  1397
                    new PrivilegedAction<>() {
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1398
                        @Override
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1399
                        public Constructor<?>[] run() {
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1400
                            return enclosingCandidate.getDeclaredConstructors();
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1401
                        }
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1402
                    });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
             * Loop over all declared constructors; match number
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
             * of and type of parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
             */
29113
4c3e0acf325e 8014678: Spurious AccessControlException thrown in java.lang.Class.getEnclosingMethod()
jfranck
parents: 28519
diff changeset
  1407
            for(Constructor<?> c: candidates) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
                Class<?>[] candidateParamClasses = c.getParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
                if (candidateParamClasses.length == parameterClasses.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
                    boolean matches = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
                    for(int i = 0; i < candidateParamClasses.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
                        if (!candidateParamClasses[i].equals(parameterClasses[i])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
                            matches = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
                            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
                    if (matches)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
                        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
            throw new InternalError("Enclosing constructor not found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
     * If the class or interface represented by this {@code Class} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
     * is a member of another class, returns the {@code Class} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
     * representing the class in which it was declared.  This method returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
     * null if this class or interface is not a member of any other class.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
     * this {@code Class} object represents an array class, a primitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
     * type, or void,then this method returns null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
     * @return the declaring class for this class
20816
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1437
     * @throws SecurityException
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1438
     *         If a security manager, <i>s</i>, is present and the caller's
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1439
     *         class loader is not the same as or an ancestor of the class
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1440
     *         loader for the declaring class and invocation of {@link
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1441
     *         SecurityManager#checkPackageAccess s.checkPackageAccess()}
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1442
     *         denies access to the package of the declaring class
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1443
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
     */
20816
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1445
    @CallerSensitive
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1446
    public Class<?> getDeclaringClass() throws SecurityException {
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1447
        final Class<?> candidate = getDeclaringClass0();
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1448
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1449
        if (candidate != null)
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1450
            candidate.checkPackageAccess(
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1451
                    ClassLoader.getClassLoader(Reflection.getCallerClass()), true);
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1452
        return candidate;
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1453
    }
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1454
b44a353664b8 8014349: (cl) Class.getDeclaredClass problematic in some class loader configurations
jfranck
parents: 18546
diff changeset
  1455
    private native Class<?> getDeclaringClass0();
2
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
     * Returns the immediately enclosing class of the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
     * class.  If the underlying class is a top level class this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
     * method returns {@code null}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
     * @return the immediately enclosing class of the underlying class
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1463
     * @exception  SecurityException
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1464
     *             If a security manager, <i>s</i>, is present and the caller's
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1465
     *             class loader is not the same as or an ancestor of the class
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1466
     *             loader for the enclosing class and invocation of {@link
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1467
     *             SecurityManager#checkPackageAccess s.checkPackageAccess()}
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1468
     *             denies access to the package of the enclosing class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
     */
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1471
    @CallerSensitive
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1472
    public Class<?> getEnclosingClass() throws SecurityException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
        // There are five kinds of classes (or interfaces):
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
        // a) Top level classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
        // b) Nested classes (static member classes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
        // c) Inner classes (non-static member classes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
        // d) Local classes (named classes declared within a method)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
        // e) Anonymous classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
30341
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1481
        // JVM Spec 4.7.7: A class must have an EnclosingMethod
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
        // attribute if and only if it is a local class or an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
        // anonymous class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
        EnclosingMethodInfo enclosingInfo = getEnclosingMethodInfo();
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1485
        Class<?> enclosingCandidate;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
        if (enclosingInfo == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
            // This is a top level or a nested class or an inner class (a, b, or c)
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1489
            enclosingCandidate = getDeclaringClass0();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
            Class<?> enclosingClass = enclosingInfo.getEnclosingClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
            // This is a local class or an anonymous class (d or e)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
            if (enclosingClass == this || enclosingClass == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
                throw new InternalError("Malformed enclosing method information");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
            else
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1496
                enclosingCandidate = enclosingClass;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
        }
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1498
18263
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  1499
        if (enclosingCandidate != null)
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  1500
            enclosingCandidate.checkPackageAccess(
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  1501
                    ClassLoader.getClassLoader(Reflection.getCallerClass()), true);
18234
996e8c4c858d 8007812: (reflect) Class.getEnclosingMethod problematic for some classes
jfranck
parents: 16906
diff changeset
  1502
        return enclosingCandidate;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
     * Returns the simple name of the underlying class as given in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
     * source code. Returns an empty string if the underlying class is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     * anonymous.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
     * <p>The simple name of an array is the simple name of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
     * component type with "[]" appended.  In particular the simple
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
     * name of an array whose component type is anonymous is "[]".
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
     * @return the simple name of the underlying class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
    public String getSimpleName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
        if (isArray())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
            return getComponentType().getSimpleName()+"[]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
        String simpleName = getSimpleBinaryName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
        if (simpleName == null) { // top level class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
            simpleName = getName();
24685
215fa91e1b4c 8044461: Cleanup new Boolean and single character strings
rriggs
parents: 22581
diff changeset
  1524
            return simpleName.substring(simpleName.lastIndexOf('.')+1); // strip the package name
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
        }
30341
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1526
        return simpleName;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
    /**
16743
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1530
     * Return an informative string for the name of this type.
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1531
     *
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1532
     * @return an informative string for the name of this type
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1533
     * @since 1.8
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1534
     */
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1535
    public String getTypeName() {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1536
        if (isArray()) {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1537
            try {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1538
                Class<?> cl = this;
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1539
                int dimensions = 0;
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1540
                while (cl.isArray()) {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1541
                    dimensions++;
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1542
                    cl = cl.getComponentType();
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1543
                }
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1544
                StringBuilder sb = new StringBuilder();
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1545
                sb.append(cl.getName());
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1546
                for (int i = 0; i < dimensions; i++) {
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1547
                    sb.append("[]");
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1548
                }
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1549
                return sb.toString();
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1550
            } catch (Throwable e) { /*FALLTHRU*/ }
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1551
        }
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1552
        return getName();
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1553
    }
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1554
b0b34102bb4c 6298888: Add toGenericString to j.l.Class and getTypeName to j.l.reflect.Type
darcy
parents: 16126
diff changeset
  1555
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
     * Returns the canonical name of the underlying class as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
     * defined by the Java Language Specification.  Returns null if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
     * the underlying class does not have a canonical name (i.e., if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
     * it is a local or anonymous class or an array whose component
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
     * type does not have a canonical name).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
     * @return the canonical name of the underlying class if it exists, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     * {@code null} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
    public String getCanonicalName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
        if (isArray()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
            String canonicalName = getComponentType().getCanonicalName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
            if (canonicalName != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
                return canonicalName + "[]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
        if (isLocalOrAnonymousClass())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
        Class<?> enclosingClass = getEnclosingClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
        if (enclosingClass == null) { // top level class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
            return getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
            String enclosingName = enclosingClass.getCanonicalName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
            if (enclosingName == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
            return enclosingName + "." + getSimpleName();
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
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
     * Returns {@code true} if and only if the underlying class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     * is an anonymous class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     * @return {@code true} if and only if this class is an anonymous class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
    public boolean isAnonymousClass() {
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1594
        return !isArray() && isLocalOrAnonymousClass() &&
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1595
                getSimpleBinaryName0() == null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
     * Returns {@code true} if and only if the underlying class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
     * is a local class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     * @return {@code true} if and only if this class is a local class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
    public boolean isLocalClass() {
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1606
        return isLocalOrAnonymousClass() &&
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1607
                (isArray() || getSimpleBinaryName0() != null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
     * Returns {@code true} if and only if the underlying class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
     * is a member class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
     * @return {@code true} if and only if this class is a member class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
    public boolean isMemberClass() {
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1618
        return !isLocalOrAnonymousClass() && getDeclaringClass0() != null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
     * Returns the "simple binary name" of the underlying class, i.e.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
     * the binary name without the leading enclosing class name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
     * Returns {@code null} if the underlying class is a top level
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     * class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
    private String getSimpleBinaryName() {
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1628
        if (isTopLevelClass())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
            return null;
30341
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1630
        String name = getSimpleBinaryName0();
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1631
        if (name == null) // anonymous class
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1632
            return "";
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1633
        return name;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
30341
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1636
    private native String getSimpleBinaryName0();
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1637
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
    /**
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1639
     * Returns {@code true} if this is a top level class.  Returns {@code false}
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1640
     * otherwise.
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1641
     */
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1642
    private boolean isTopLevelClass() {
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1643
        return !isLocalOrAnonymousClass() && getDeclaringClass0() == null;
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1644
    }
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1645
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1646
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
     * Returns {@code true} if this is a local class or an anonymous
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
     * class.  Returns {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
    private boolean isLocalOrAnonymousClass() {
30341
a026e34714ed 8057919: Class.getSimpleName() should work for non-JLS compliant class names
vlivanov
parents: 29113
diff changeset
  1651
        // JVM Spec 4.7.7: A class must have an EnclosingMethod
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
        // attribute if and only if it is a local class or an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
        // anonymous class.
42469
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1654
        return hasEnclosingMethodInfo();
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1655
    }
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1656
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1657
    private boolean hasEnclosingMethodInfo() {
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1658
        Object[] enclosingInfo = getEnclosingMethod0();
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1659
        if (enclosingInfo != null) {
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1660
            EnclosingMethodInfo.validate(enclosingInfo);
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1661
            return true;
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1662
        }
d1c0a9123f87 8170595: Optimize Class.isAnonymousClass, isLocalClass, and isMemberClass
redestad
parents: 42339
diff changeset
  1663
        return false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
     * Returns an array containing {@code Class} objects representing all
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     * the public classes and interfaces that are members of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     * represented by this {@code Class} object.  This includes public
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     * class and interface members inherited from superclasses and public class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     * and interface members declared by the class.  This method returns an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
     * array of length 0 if this {@code Class} object has no public member
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
     * classes or interfaces.  This method also returns an array of length 0 if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
     * this {@code Class} object represents a primitive type, an array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
     * class, or void.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
     * @return the array of {@code Class} objects representing the public
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1678
     *         members of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1679
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1680
     *         If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1681
     *         the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1682
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1683
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1684
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1685
     *         of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1687
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1689
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
    public Class<?>[] getClasses() {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1691
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
        // Privileged so this implementation can look at DECLARED classes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
        // something the caller might not have privilege to do.  The code here
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
        // is allowed to look at DECLARED classes because (1) it does not hand
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
        // out anything other than public members and (2) public member access
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
        // has already been ok'd by the SecurityManager.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  1699
        return java.security.AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29113
diff changeset
  1700
            new java.security.PrivilegedAction<>() {
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  1701
                public Class<?>[] run() {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
  1702
                    List<Class<?>> list = new ArrayList<>();
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  1703
                    Class<?> currentClass = Class.this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
                    while (currentClass != null) {
22581
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  1705
                        for (Class<?> m : currentClass.getDeclaredClasses()) {
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  1706
                            if (Modifier.isPublic(m.getModifiers())) {
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  1707
                                list.add(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
                        currentClass = currentClass.getSuperclass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
                    }
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  1712
                    return list.toArray(new Class<?>[0]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
     * Returns an array containing {@code Field} objects reflecting all
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
     * the accessible public fields of the class or interface represented by
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1721
     * this {@code Class} object.
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1722
     *
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 27783
diff changeset
  1723
     * <p> If this {@code Class} object represents a class or interface with
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1724
     * no accessible public fields, then this method returns an array of length
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1725
     * 0.
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1726
     *
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1727
     * <p> If this {@code Class} object represents a class, then this method
27719
d8e33060989c 8063147: Class.getFields spec should state that fields are inherited from superinterfaces
martin
parents: 27072
diff changeset
  1728
     * returns the public fields of the class and of all its superclasses and
d8e33060989c 8063147: Class.getFields spec should state that fields are inherited from superinterfaces
martin
parents: 27072
diff changeset
  1729
     * superinterfaces.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
     *
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1731
     * <p> If this {@code Class} object represents an interface, then this
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1732
     * method returns the fields of the interface and of all its
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1733
     * superinterfaces.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
     *
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1735
     * <p> If this {@code Class} object represents an array type, a primitive
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1736
     * type, or void, then this method returns an array of length 0.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1738
     * <p> The elements in the returned array are not sorted and are not in any
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1739
     * particular order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
     * @return the array of {@code Field} objects representing the
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1742
     *         public fields
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1743
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1744
     *         If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1745
     *         the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1746
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1747
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1748
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1749
     *         of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1751
     * @since 1.1
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1752
     * @jls 8.2 Class Members
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1753
     * @jls 8.3 Field Declarations
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1755
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
    public Field[] getFields() throws SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1757
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
        return copyFields(privateGetPublicFields(null));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
    /**
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1763
     * Returns an array containing {@code Method} objects reflecting all the
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1764
     * public methods of the class or interface represented by this {@code
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1765
     * Class} object, including those declared by the class or interface and
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1766
     * those inherited from superclasses and superinterfaces.
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1767
     *
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1768
     * <p> If this {@code Class} object represents an array type, then the
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1769
     * returned array has a {@code Method} object for each of the public
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1770
     * methods inherited by the array type from {@code Object}. It does not
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1771
     * contain a {@code Method} object for {@code clone()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
     *
21970
fb9a728c4b77 8029117: (reflect) clarify javadoc for getMethod(...) and getMethods()
jfranck
parents: 21358
diff changeset
  1773
     * <p> If this {@code Class} object represents an interface then the
fb9a728c4b77 8029117: (reflect) clarify javadoc for getMethod(...) and getMethods()
jfranck
parents: 21358
diff changeset
  1774
     * returned array does not contain any implicitly declared methods from
fb9a728c4b77 8029117: (reflect) clarify javadoc for getMethod(...) and getMethods()
jfranck
parents: 21358
diff changeset
  1775
     * {@code Object}. Therefore, if no methods are explicitly declared in
fb9a728c4b77 8029117: (reflect) clarify javadoc for getMethod(...) and getMethods()
jfranck
parents: 21358
diff changeset
  1776
     * this interface or any of its superinterfaces then the returned array
fb9a728c4b77 8029117: (reflect) clarify javadoc for getMethod(...) and getMethods()
jfranck
parents: 21358
diff changeset
  1777
     * has length 0. (Note that a {@code Class} object which represents a class
fb9a728c4b77 8029117: (reflect) clarify javadoc for getMethod(...) and getMethods()
jfranck
parents: 21358
diff changeset
  1778
     * always has public methods, inherited from {@code Object}.)
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1779
     *
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1780
     * <p> The returned array never contains methods with names "{@code <init>}"
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1781
     * or "{@code <clinit>}".
21314
1a616b8bdb31 8009411: (reflect) Class.getMethods should not include static methods from interfaces
jfranck
parents: 20853
diff changeset
  1782
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1783
     * <p> The elements in the returned array are not sorted and are not in any
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1784
     * particular order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
     *
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1786
     * <p> Generally, the result is computed as with the following 4 step algorithm.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1787
     * Let C be the class or interface represented by this {@code Class} object:
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1788
     * <ol>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1789
     * <li> A union of methods is composed of:
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1790
     *   <ol type="a">
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1791
     *   <li> C's declared public instance and static methods as returned by
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1792
     *        {@link #getDeclaredMethods()} and filtered to include only public
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1793
     *        methods.</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1794
     *   <li> If C is a class other than {@code Object}, then include the result
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1795
     *        of invoking this algorithm recursively on the superclass of C.</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1796
     *   <li> Include the results of invoking this algorithm recursively on all
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1797
     *        direct superinterfaces of C, but include only instance methods.</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1798
     *   </ol></li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1799
     * <li> Union from step 1 is partitioned into subsets of methods with same
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1800
     *      signature (name, parameter types) and return type.</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1801
     * <li> Within each such subset only the most specific methods are selected.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1802
     *      Let method M be a method from a set of methods with same signature
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1803
     *      and return type. M is most specific if there is no such method
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1804
     *      N != M from the same set, such that N is more specific than M.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1805
     *      N is more specific than M if:
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1806
     *   <ol type="a">
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1807
     *   <li> N is declared by a class and M is declared by an interface; or</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1808
     *   <li> N and M are both declared by classes or both by interfaces and
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1809
     *        N's declaring type is the same as or a subtype of M's declaring type
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1810
     *        (clearly, if M's and N's declaring types are the same type, then
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1811
     *        M and N are the same method).</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1812
     *   </ol></li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1813
     * <li> The result of this algorithm is the union of all selected methods from
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1814
     *      step 3.</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1815
     * </ol>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1816
     *
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1817
     * @apiNote There may be more than one method with a particular name
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1818
     * and parameter types in a class because while the Java language forbids a
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1819
     * class to declare multiple methods with the same signature but different
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1820
     * return types, the Java virtual machine does not.  This
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1821
     * increased flexibility in the virtual machine can be used to
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1822
     * implement various language features.  For example, covariant
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1823
     * returns can be implemented with {@linkplain
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1824
     * java.lang.reflect.Method#isBridge bridge methods}; the bridge
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1825
     * method and the overriding method would have the same
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1826
     * signature but different return types.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1827
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
     * @return the array of {@code Method} objects representing the
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1829
     *         public methods of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1830
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1831
     *         If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1832
     *         the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1833
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1834
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1835
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1836
     *         of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1838
     * @jls 8.2 Class Members
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  1839
     * @jls 8.4 Method Declarations
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1840
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1842
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
    public Method[] getMethods() throws SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1844
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
        return copyMethods(privateGetPublicMethods());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
     * Returns an array containing {@code Constructor} objects reflecting
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
     * all the public constructors of the class represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
     * {@code Class} object.  An array of length 0 is returned if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
     * class has no public constructors, or if the class is an array class, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
     * if the class reflects a primitive type or void.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
     * Note that while this method returns an array of {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
     * Constructor<T>} objects (that is an array of constructors from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
     * this class), the return type of this method is {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
     * Constructor<?>[]} and <em>not</em> {@code Constructor<T>[]} as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
     * might be expected.  This less informative return type is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
     * necessary since after being returned from this method, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
     * array could be modified to hold {@code Constructor} objects for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
     * different classes, which would violate the type guarantees of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
     * {@code Constructor<T>[]}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
     * @return the array of {@code Constructor} objects representing the
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1867
     *         public constructors of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1868
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1869
     *         If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1870
     *         the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1871
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1872
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1873
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1874
     *         of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1876
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1878
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
    public Constructor<?>[] getConstructors() throws SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1880
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
        return copyConstructors(privateGetDeclaredConstructors(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
    /**
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1886
     * Returns a {@code Field} object that reflects the specified public member
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1887
     * field of the class or interface represented by this {@code Class}
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1888
     * object. The {@code name} parameter is a {@code String} specifying the
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1889
     * simple name of the desired field.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
     * <p> The field to be reflected is determined by the algorithm that
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1892
     * follows.  Let C be the class or interface represented by this object:
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1893
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
     * <OL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
     * <LI> If C declares a public field with the name specified, that is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
     *      field to be reflected.</LI>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
     * <LI> If no field was found in step 1 above, this algorithm is applied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
     *      recursively to each direct superinterface of C. The direct
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
     *      superinterfaces are searched in the order they were declared.</LI>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
     * <LI> If no field was found in steps 1 and 2 above, and C has a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
     *      superclass S, then this algorithm is invoked recursively upon S.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
     *      If C has no superclass, then a {@code NoSuchFieldException}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
     *      is thrown.</LI>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
     * </OL>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
     *
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1906
     * <p> If this {@code Class} object represents an array type, then this
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1907
     * method does not find the {@code length} field of the array type.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
     * @param name the field name
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1910
     * @return the {@code Field} object of this class specified by
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1911
     *         {@code name}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1912
     * @throws NoSuchFieldException if a field with the specified name is
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1913
     *         not found.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1914
     * @throws NullPointerException if {@code name} is {@code null}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1915
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1916
     *         If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1917
     *         the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1918
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1919
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1920
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  1921
     *         of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  1923
     * @since 1.1
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1924
     * @jls 8.2 Class Members
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  1925
     * @jls 8.3 Field Declarations
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1927
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
    public Field getField(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
        throws NoSuchFieldException, SecurityException {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1930
        Objects.requireNonNull(name);
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  1931
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
        Field field = getField0(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
        if (field == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
            throw new NoSuchFieldException(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1936
        return getReflectionFactory().copyField(field);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
     * Returns a {@code Method} object that reflects the specified public
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
     * member method of the class or interface represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
     * {@code Class} object. The {@code name} parameter is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
     * {@code String} specifying the simple name of the desired method. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
     * {@code parameterTypes} parameter is an array of {@code Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
     * objects that identify the method's formal parameter types, in declared
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
     * order. If {@code parameterTypes} is {@code null}, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
     * treated as if it were an empty array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
     *
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1950
     * <p> If this {@code Class} object represents an array type, then this
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1951
     * method finds any public method inherited by the array type from
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1952
     * {@code Object} except method {@code clone()}.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1953
     *
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1954
     * <p> If this {@code Class} object represents an interface then this
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1955
     * method does not find any implicitly declared method from
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1956
     * {@code Object}. Therefore, if no methods are explicitly declared in
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1957
     * this interface or any of its superinterfaces, then this method does not
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1958
     * find any method.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1959
     *
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1960
     * <p> This method does not find any method with name "{@code <init>}" or
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1961
     * "{@code <clinit>}".
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
     *
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1963
     * <p> Generally, the method to be reflected is determined by the 4 step
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1964
     * algorithm that follows.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1965
     * Let C be the class or interface represented by this {@code Class} object:
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1966
     * <ol>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1967
     * <li> A union of methods is composed of:
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1968
     *   <ol type="a">
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1969
     *   <li> C's declared public instance and static methods as returned by
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1970
     *        {@link #getDeclaredMethods()} and filtered to include only public
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1971
     *        methods that match given {@code name} and {@code parameterTypes}</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1972
     *   <li> If C is a class other than {@code Object}, then include the result
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1973
     *        of invoking this algorithm recursively on the superclass of C.</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1974
     *   <li> Include the results of invoking this algorithm recursively on all
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1975
     *        direct superinterfaces of C, but include only instance methods.</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1976
     *   </ol></li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1977
     * <li> This union is partitioned into subsets of methods with same
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1978
     *      return type (the selection of methods from step 1 also guarantees that
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1979
     *      they have the same method name and parameter types).</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1980
     * <li> Within each such subset only the most specific methods are selected.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1981
     *      Let method M be a method from a set of methods with same VM
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1982
     *      signature (return type, name, parameter types).
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1983
     *      M is most specific if there is no such method N != M from the same
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1984
     *      set, such that N is more specific than M. N is more specific than M
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1985
     *      if:
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1986
     *   <ol type="a">
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1987
     *   <li> N is declared by a class and M is declared by an interface; or</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1988
     *   <li> N and M are both declared by classes or both by interfaces and
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1989
     *        N's declaring type is the same as or a subtype of M's declaring type
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1990
     *        (clearly, if M's and N's declaring types are the same type, then
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1991
     *        M and N are the same method).</li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1992
     *   </ol></li>
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1993
     * <li> The result of this algorithm is chosen arbitrarily from the methods
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1994
     *      with most specific return type among all selected methods from step 3.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1995
     *      Let R be a return type of a method M from the set of all selected methods
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1996
     *      from step 3. M is a method with most specific return type if there is
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1997
     *      no such method N != M from the same set, having return type S != R,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1998
     *      such that S is a subtype of R as determined by
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  1999
     *      R.class.{@link #isAssignableFrom}(S.class).
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2000
     * </ol>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
     *
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2002
     * @apiNote There may be more than one method with matching name and
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2003
     * parameter types in a class because while the Java language forbids a
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2004
     * class to declare multiple methods with the same signature but different
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
     * return types, the Java virtual machine does not.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
     * increased flexibility in the virtual machine can be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
     * implement various language features.  For example, covariant
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
     * returns can be implemented with {@linkplain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
     * java.lang.reflect.Method#isBridge bridge methods}; the bridge
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2010
     * method and the overriding method would have the same
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2011
     * signature but different return types. This method would return the
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2012
     * overriding method as it would have a more specific return type.
21314
1a616b8bdb31 8009411: (reflect) Class.getMethods should not include static methods from interfaces
jfranck
parents: 20853
diff changeset
  2013
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
     * @param name the name of the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
     * @param parameterTypes the list of parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
     * @return the {@code Method} object that matches the specified
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2017
     *         {@code name} and {@code parameterTypes}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2018
     * @throws NoSuchMethodException if a matching method is not found
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2019
     *         or if the name is "&lt;init&gt;"or "&lt;clinit&gt;".
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2020
     * @throws NullPointerException if {@code name} is {@code null}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2021
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2022
     *         If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2023
     *         the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2024
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2025
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2026
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2027
     *         of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2029
     * @jls 8.2 Class Members
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2030
     * @jls 8.4 Method Declarations
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2031
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2033
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
    public Method getMethod(String name, Class<?>... parameterTypes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
        throws NoSuchMethodException, SecurityException {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2036
        Objects.requireNonNull(name);
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2037
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), true);
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2038
        Method method = getMethod0(name, parameterTypes);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
        if (method == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
            throw new NoSuchMethodException(getName() + "." + name + argumentTypesToString(parameterTypes));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2042
        return getReflectionFactory().copyMethod(method);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2045
    /**
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2046
     * Returns a {@code Method} object that reflects the specified public
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2047
     * member method of the class or interface represented by this
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2048
     * {@code Class} object.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2049
     *
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2050
     * @param name the name of the method
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2051
     * @param parameterTypes the list of parameters
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2052
     * @return the {@code Method} object that matches the specified
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2053
     *         {@code name} and {@code parameterTypes}; {@code null}
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2054
     *         if the method is not found or the name is
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2055
     *         "&lt;init&gt;"or "&lt;clinit&gt;".
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2056
     */
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2057
    Method getMethodOrNull(String name, Class<?>... parameterTypes) {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2058
        Objects.requireNonNull(name);
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2059
        Method method = getMethod0(name, parameterTypes);
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2060
        return method == null ? null : getReflectionFactory().copyMethod(method);
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2061
    }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2062
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
     * Returns a {@code Constructor} object that reflects the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
     * public constructor of the class represented by this {@code Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
     * object. The {@code parameterTypes} parameter is an array of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
     * {@code Class} objects that identify the constructor's formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
     * parameter types, in declared order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
     * If this {@code Class} object represents an inner class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
     * declared in a non-static context, the formal parameter types
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
     * include the explicit enclosing instance as the first parameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
     * <p> The constructor to reflect is the public constructor of the class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
     * represented by this {@code Class} object whose formal parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
     * types match those specified by {@code parameterTypes}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
     * @param parameterTypes the parameter array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
     * @return the {@code Constructor} object of the public constructor that
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2081
     *         matches the specified {@code parameterTypes}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2082
     * @throws NoSuchMethodException if a matching method is not found.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2083
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2084
     *         If a security manager, <i>s</i>, is present and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2085
     *         the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2086
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2087
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2088
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2089
     *         of this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2091
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2093
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
    public Constructor<T> getConstructor(Class<?>... parameterTypes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
        throws NoSuchMethodException, SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2096
        checkMemberAccess(Member.PUBLIC, Reflection.getCallerClass(), true);
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2097
        return getReflectionFactory().copyConstructor(
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2098
            getConstructor0(parameterTypes, Member.PUBLIC));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
     * Returns an array of {@code Class} objects reflecting all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
     * classes and interfaces declared as members of the class represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
     * this {@code Class} object. This includes public, protected, default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
     * (package) access, and private classes and interfaces declared by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
     * class, but excludes inherited classes and interfaces.  This method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
     * returns an array of length 0 if the class declares no classes or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
     * interfaces as members, or if this {@code Class} object represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
     * primitive type, an array class, or void.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
     * @return the array of {@code Class} objects representing all the
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2113
     *         declared members of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2114
     * @throws SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2115
     *         If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2116
     *         following conditions is met:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2118
     *         <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2120
     *         <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2121
     *         class loader of this class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2122
     *         {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2123
     *         s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2124
     *         {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2125
     *         denies access to the declared classes within this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2127
     *         <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2128
     *         ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2129
     *         invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2130
     *         s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2131
     *         of this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2133
     *         </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2135
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2137
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
    public Class<?>[] getDeclaredClasses() throws SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2139
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
        return getDeclaredClasses0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
     * Returns an array of {@code Field} objects reflecting all the fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
     * declared by the class or interface represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
     * {@code Class} object. This includes public, protected, default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
     * (package) access, and private fields, but excludes inherited fields.
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2149
     *
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2150
     * <p> If this {@code Class} object represents a class or interface with no
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2151
     * declared fields, then this method returns an array of length 0.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
     *
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2153
     * <p> If this {@code Class} object represents an array type, a primitive
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2154
     * type, or void, then this method returns an array of length 0.
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2155
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2156
     * <p> The elements in the returned array are not sorted and are not in any
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2157
     * particular order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2159
     * @return  the array of {@code Field} objects representing all the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2160
     *          declared fields of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2161
     * @throws  SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2162
     *          If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2163
     *          following conditions is met:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2165
     *          <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2167
     *          <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2168
     *          class loader of this class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2169
     *          {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2170
     *          s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2171
     *          {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2172
     *          denies access to the declared fields within this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2174
     *          <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2175
     *          ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2176
     *          invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2177
     *          s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2178
     *          of this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2180
     *          </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2182
     * @since 1.1
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2183
     * @jls 8.2 Class Members
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2184
     * @jls 8.3 Field Declarations
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2186
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
    public Field[] getDeclaredFields() throws SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2188
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
        return copyFields(privateGetDeclaredFields(false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
    /**
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2194
     *
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2195
     * Returns an array containing {@code Method} objects reflecting all the
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2196
     * declared methods of the class or interface represented by this {@code
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2197
     * Class} object, including public, protected, default (package)
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2198
     * access, and private methods, but excluding inherited methods.
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2199
     *
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2200
     * <p> If this {@code Class} object represents a type that has multiple
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2201
     * declared methods with the same name and parameter types, but different
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2202
     * return types, then the returned array has a {@code Method} object for
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2203
     * each such method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2205
     * <p> If this {@code Class} object represents a type that has a class
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2206
     * initialization method {@code <clinit>}, then the returned array does
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2207
     * <em>not</em> have a corresponding {@code Method} object.
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2208
     *
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2209
     * <p> If this {@code Class} object represents a class or interface with no
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2210
     * declared methods, then the returned array has length 0.
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2211
     *
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2212
     * <p> If this {@code Class} object represents an array type, a primitive
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2213
     * type, or void, then the returned array has length 0.
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2214
     *
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2215
     * <p> The elements in the returned array are not sorted and are not in any
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2216
     * particular order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2218
     * @return  the array of {@code Method} objects representing all the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2219
     *          declared methods of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2220
     * @throws  SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2221
     *          If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2222
     *          following conditions is met:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2224
     *          <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2226
     *          <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2227
     *          class loader of this class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2228
     *          {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2229
     *          s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2230
     *          {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2231
     *          denies access to the declared methods within this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2233
     *          <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2234
     *          ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2235
     *          invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2236
     *          s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2237
     *          of this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2239
     *          </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2241
     * @jls 8.2 Class Members
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2242
     * @jls 8.4 Method Declarations
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2243
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2244
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2245
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
    public Method[] getDeclaredMethods() throws SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2247
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
        return copyMethods(privateGetDeclaredMethods(false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
     * Returns an array of {@code Constructor} objects reflecting all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
     * constructors declared by the class represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
     * {@code Class} object. These are public, protected, default
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
     * (package) access, and private constructors.  The elements in the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
     * returned are not sorted and are not in any particular order.  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
     * class has a default constructor, it is included in the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
     * This method returns an array of length 0 if this {@code Class}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
     * object represents an interface, a primitive type, an array class, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2261
     * void.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
     * <p> See <em>The Java Language Specification</em>, section 8.2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2265
     * @return  the array of {@code Constructor} objects representing all the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2266
     *          declared constructors of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2267
     * @throws  SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2268
     *          If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2269
     *          following conditions is met:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2271
     *          <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2273
     *          <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2274
     *          class loader of this class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2275
     *          {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2276
     *          s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2277
     *          {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2278
     *          denies access to the declared constructors within this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2279
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2280
     *          <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2281
     *          ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2282
     *          invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2283
     *          s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2284
     *          of this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2285
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2286
     *          </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2287
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2288
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2289
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2290
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2291
    public Constructor<?>[] getDeclaredConstructors() throws SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2292
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2293
        return copyConstructors(privateGetDeclaredConstructors(false));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2296
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2297
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2298
     * Returns a {@code Field} object that reflects the specified declared
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2299
     * field of the class or interface represented by this {@code Class}
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2300
     * object. The {@code name} parameter is a {@code String} that specifies
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2301
     * the simple name of the desired field.
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2302
     *
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2303
     * <p> If this {@code Class} object represents an array type, then this
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2304
     * method does not find the {@code length} field of the array type.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2305
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
     * @param name the name of the field
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2307
     * @return  the {@code Field} object for the specified field in this
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2308
     *          class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2309
     * @throws  NoSuchFieldException if a field with the specified name is
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2310
     *          not found.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2311
     * @throws  NullPointerException if {@code name} is {@code null}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2312
     * @throws  SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2313
     *          If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2314
     *          following conditions is met:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2316
     *          <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2318
     *          <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2319
     *          class loader of this class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2320
     *          {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2321
     *          s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2322
     *          {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2323
     *          denies access to the declared field
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2325
     *          <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2326
     *          ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2327
     *          invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2328
     *          s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2329
     *          of this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2331
     *          </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2333
     * @since 1.1
19819
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2334
     * @jls 8.2 Class Members
a2cde5f9a3d6 5047859: (reflect) Class.getField can't find String[].length
jfranck
parents: 19588
diff changeset
  2335
     * @jls 8.3 Field Declarations
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2337
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
    public Field getDeclaredField(String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
        throws NoSuchFieldException, SecurityException {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2340
        Objects.requireNonNull(name);
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2341
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
        Field field = searchFields(privateGetDeclaredFields(false), name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
        if (field == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
            throw new NoSuchFieldException(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2346
        return getReflectionFactory().copyField(field);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
     * Returns a {@code Method} object that reflects the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
     * declared method of the class or interface represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
     * {@code Class} object. The {@code name} parameter is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
     * {@code String} that specifies the simple name of the desired
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
     * method, and the {@code parameterTypes} parameter is an array of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
     * {@code Class} objects that identify the method's formal parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
     * types, in declared order.  If more than one method with the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
     * parameter types is declared in a class, and one of these methods has a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
     * return type that is more specific than any of the others, that method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
     * returned; otherwise one of the methods is chosen arbitrarily.  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
     * name is "&lt;init&gt;"or "&lt;clinit&gt;" a {@code NoSuchMethodException}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
     * is raised.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2364
     * <p> If this {@code Class} object represents an array type, then this
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2365
     * method does not find the {@code clone()} method.
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2366
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
     * @param name the name of the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
     * @param parameterTypes the parameter array
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2369
     * @return  the {@code Method} object for the method of this class
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2370
     *          matching the specified name and parameters
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2371
     * @throws  NoSuchMethodException if a matching method is not found.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2372
     * @throws  NullPointerException if {@code name} is {@code null}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2373
     * @throws  SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2374
     *          If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2375
     *          following conditions is met:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2377
     *          <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2379
     *          <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2380
     *          class loader of this class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2381
     *          {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2382
     *          s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2383
     *          {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2384
     *          denies access to the declared method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2385
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2386
     *          <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2387
     *          ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2388
     *          invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2389
     *          s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2390
     *          of this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2392
     *          </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
     *
19834
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2394
     * @jls 8.2 Class Members
c43d94c72c41 4987375: (reflect) Class.get{Declared}Method{s} does not return clone() for array types
jfranck
parents: 19819
diff changeset
  2395
     * @jls 8.4 Method Declarations
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2396
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2398
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
    public Method getDeclaredMethod(String name, Class<?>... parameterTypes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
        throws NoSuchMethodException, SecurityException {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2401
        Objects.requireNonNull(name);
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2402
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
        Method method = searchMethods(privateGetDeclaredMethods(false), name, parameterTypes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
        if (method == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
            throw new NoSuchMethodException(getName() + "." + name + argumentTypesToString(parameterTypes));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2407
        return getReflectionFactory().copyMethod(method);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
     * Returns a {@code Constructor} object that reflects the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2413
     * constructor of the class or interface represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
     * {@code Class} object.  The {@code parameterTypes} parameter is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
     * an array of {@code Class} objects that identify the constructor's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
     * formal parameter types, in declared order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
     * If this {@code Class} object represents an inner class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
     * declared in a non-static context, the formal parameter types
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
     * include the explicit enclosing instance as the first parameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
     * @param parameterTypes the parameter array
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2423
     * @return  The {@code Constructor} object for the constructor with the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2424
     *          specified parameter list
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2425
     * @throws  NoSuchMethodException if a matching method is not found.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2426
     * @throws  SecurityException
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2427
     *          If a security manager, <i>s</i>, is present and any of the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2428
     *          following conditions is met:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2429
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2430
     *          <ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2432
     *          <li> the caller's class loader is not the same as the
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2433
     *          class loader of this class and invocation of
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2434
     *          {@link SecurityManager#checkPermission
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2435
     *          s.checkPermission} method with
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2436
     *          {@code RuntimePermission("accessDeclaredMembers")}
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2437
     *          denies access to the declared constructor
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2438
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2439
     *          <li> the caller's class loader is not the same as or an
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2440
     *          ancestor of the class loader for the current class and
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2441
     *          invocation of {@link SecurityManager#checkPackageAccess
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2442
     *          s.checkPackageAccess()} denies access to the package
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2443
     *          of this class
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
     *
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2445
     *          </ul>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2446
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2447
     * @since 1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2449
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2450
    public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2451
        throws NoSuchMethodException, SecurityException {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2452
        checkMemberAccess(Member.DECLARED, Reflection.getCallerClass(), true);
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2453
        return getReflectionFactory().copyConstructor(
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  2454
            getConstructor0(parameterTypes, Member.DECLARED));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2455
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2456
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
    /**
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2458
     * Finds a resource with a given name.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2459
     *
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2460
     * <p> If this class is in a named {@link Module Module} then this method
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2461
     * will attempt to find the resource in the module by means of the absolute
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2462
     * resource name, subject to the rules for encapsulation specified in the
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2463
     * {@code Module} {@link Module#getResourceAsStream getResourceAsStream}
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2464
     * method.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2465
     *
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2466
     * <p> Otherwise, if this class is not in a named module then the rules for
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2467
     * searching resources associated with a given class are implemented by the
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2468
     * defining {@linkplain ClassLoader class loader} of the class.  This method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2469
     * delegates to this object's class loader.  If this object was loaded by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
     * the bootstrap class loader, the method delegates to {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
     * ClassLoader#getSystemResourceAsStream}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
     *
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2473
     * <p> Before finding a resource in the caller's module or delegation to a
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2474
     * class loader, an absolute resource name is constructed from the given
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2475
     * resource name using this algorithm:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2476
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
     * <li> If the {@code name} begins with a {@code '/'}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2480
     * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
     * portion of the {@code name} following the {@code '/'}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
     * <li> Otherwise, the absolute name is of the following form:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
     *   {@code modified_package_name/name}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
     * <p> Where the {@code modified_package_name} is the package name of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
     * object with {@code '/'} substituted for {@code '.'}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
     * (<tt>'&#92;u002e'</tt>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2492
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
     * @param  name name of the desired resource
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2496
     * @return  A {@link java.io.InputStream} object; {@code null} if no
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2497
     *          resource with this name is found, the resource is in a package
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2498
     *          that is not {@link Module#isOpen(String, Module) open} to at
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2499
     *          least the caller module, or access to the resource is denied
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2500
     *          by the security manager.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2501
     * @throws  NullPointerException If {@code name} is {@code null}
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2502
     * @since  1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
     */
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2504
    @CallerSensitive
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2505
    public InputStream getResourceAsStream(String name) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2506
        name = resolveName(name);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2507
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2508
        Module module = getModule();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2509
        if (module.isNamed()) {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2510
            if (!ResourceHelper.isSimpleResource(name)) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2511
                Module caller = Reflection.getCallerClass().getModule();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2512
                if (caller != module) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2513
                    Set<String> packages = module.getDescriptor().packages();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2514
                    String pn = ResourceHelper.getPackageName(name);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2515
                    if (packages.contains(pn) && !module.isOpen(pn, caller)) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2516
                        // resource is in package not open to caller
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2517
                        return null;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2518
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2519
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2520
            }
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2521
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2522
            String mn = module.getName();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2523
            ClassLoader cl = getClassLoader0();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2524
            try {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2525
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2526
                // special-case built-in class loaders to avoid the
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2527
                // need for a URL connection
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2528
                if (cl == null) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2529
                    return BootLoader.findResourceAsStream(mn, name);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2530
                } else if (cl instanceof BuiltinClassLoader) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2531
                    return ((BuiltinClassLoader) cl).findResourceAsStream(mn, name);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2532
                } else {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2533
                    URL url = cl.findResource(mn, name);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2534
                    return (url != null) ? url.openStream() : null;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2535
                }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2536
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2537
            } catch (IOException | SecurityException e) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2538
                return null;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2539
            }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2540
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2541
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2542
        // unnamed module
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2543
        ClassLoader cl = getClassLoader0();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2544
        if (cl == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
            return ClassLoader.getSystemResourceAsStream(name);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2546
        } else {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2547
            return cl.getResourceAsStream(name);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2549
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
    /**
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2552
     * Finds a resource with a given name.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2553
     *
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2554
     * <p> If this class is in a named {@link Module Module} then this method
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2555
     * will attempt to find the resource in the module by means of the absolute
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2556
     * resource name, subject to the rules for encapsulation specified in the
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2557
     * {@code Module} {@link Module#getResourceAsStream getResourceAsStream}
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2558
     * method.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2559
     *
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2560
     * <p> Otherwise, if this class is not in a named module then the rules for
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2561
     * searching resources associated with a given class are implemented by the
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2562
     * defining {@linkplain ClassLoader class loader} of the class.  This method
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2563
     * delegates to this object's class loader. If this object was loaded by
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
     * the bootstrap class loader, the method delegates to {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
     * ClassLoader#getSystemResource}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
     * <p> Before delegation, an absolute resource name is constructed from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
     * given resource name using this algorithm:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
     * <li> If the {@code name} begins with a {@code '/'}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
     * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
     * portion of the {@code name} following the {@code '/'}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
     * <li> Otherwise, the absolute name is of the following form:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
     *   {@code modified_package_name/name}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
     * <p> Where the {@code modified_package_name} is the package name of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
     * object with {@code '/'} substituted for {@code '.'}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
     * (<tt>'&#92;u002e'</tt>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2586
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
     * @param  name name of the desired resource
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2589
     * @return A {@link java.net.URL} object; {@code null} if no resource with
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2590
     *         this name is found, the resource cannot be located by a URL, the
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2591
     *         resource is in a package that is not
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2592
     *         {@link Module#isOpen(String, Module) open} to at least the caller
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2593
     *         module, or access to the resource is denied by the security
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2594
     *         manager.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2595
     * @throws NullPointerException If {@code name} is {@code null}
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24685
diff changeset
  2596
     * @since  1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
     */
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2598
    @CallerSensitive
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2599
    public URL getResource(String name) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
        name = resolveName(name);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2601
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2602
        Module module = getModule();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2603
        if (module.isNamed()) {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2604
            if (!ResourceHelper.isSimpleResource(name)) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2605
                Module caller = Reflection.getCallerClass().getModule();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2606
                if (caller != module) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2607
                    Set<String> packages = module.getDescriptor().packages();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2608
                    String pn = ResourceHelper.getPackageName(name);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2609
                    if (packages.contains(pn) && !module.isOpen(pn, caller)) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2610
                        // resource is in package not open to caller
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2611
                        return null;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2612
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2613
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2614
            }
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2615
            String mn = getModule().getName();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2616
            ClassLoader cl = getClassLoader0();
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2617
            try {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2618
                if (cl == null) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2619
                    return BootLoader.findResource(mn, name);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2620
                } else {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2621
                    return cl.findResource(mn, name);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2622
                }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2623
            } catch (IOException ioe) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2624
                return null;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2625
            }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2626
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2627
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41891
diff changeset
  2628
        // unnamed module
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2629
        ClassLoader cl = getClassLoader0();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2630
        if (cl == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2631
            return ClassLoader.getSystemResource(name);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2632
        } else {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  2633
            return cl.getResource(name);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2634
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2635
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2636
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2637
    /** protection domain returned when the internal domain is null */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2638
    private static java.security.ProtectionDomain allPermDomain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2639
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2640
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2641
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2642
     * Returns the {@code ProtectionDomain} of this class.  If there is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2643
     * security manager installed, this method first calls the security
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2644
     * manager's {@code checkPermission} method with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2645
     * {@code RuntimePermission("getProtectionDomain")} permission to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2646
     * ensure it's ok to get the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2647
     * {@code ProtectionDomain}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2648
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2649
     * @return the ProtectionDomain of this class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2650
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2651
     * @throws SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2652
     *        if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2653
     *        {@code checkPermission} method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2654
     *        getting the ProtectionDomain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2655
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2656
     * @see java.security.ProtectionDomain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2657
     * @see SecurityManager#checkPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2658
     * @see java.lang.RuntimePermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2659
     * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2660
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2661
    public java.security.ProtectionDomain getProtectionDomain() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2662
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2663
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2664
            sm.checkPermission(SecurityConstants.GET_PD_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2665
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2666
        java.security.ProtectionDomain pd = getProtectionDomain0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2667
        if (pd == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2668
            if (allPermDomain == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2669
                java.security.Permissions perms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2670
                    new java.security.Permissions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2671
                perms.add(SecurityConstants.ALL_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2672
                allPermDomain =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2673
                    new java.security.ProtectionDomain(null, perms);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2674
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2675
            pd = allPermDomain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2676
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2677
        return pd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2679
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2680
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2681
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2682
     * Returns the ProtectionDomain of this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2683
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2684
    private native java.security.ProtectionDomain getProtectionDomain0();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2685
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2686
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2687
     * Return the Virtual Machine's Class object for the named
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2688
     * primitive type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2689
     */
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  2690
    static native Class<?> getPrimitiveClass(String name);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2691
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2692
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2693
     * Check if client is allowed to access members.  If access is denied,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2694
     * throw a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2695
     *
18263
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2696
     * This method also enforces package access.
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2697
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2698
     * <p> Default policy: allow all clients access with normal Java access
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2699
     * control.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2700
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2701
    private void checkMemberAccess(int which, Class<?> caller, boolean checkProxyInterfaces) {
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2702
        final SecurityManager s = System.getSecurityManager();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2703
        if (s != null) {
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2704
            /* Default policy allows access to all {@link Member#PUBLIC} members,
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2705
             * as well as access to classes that have the same class loader as the caller.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2706
             * In all other cases, it requires RuntimePermission("accessDeclaredMembers")
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2707
             * permission.
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2708
             */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2709
            final ClassLoader ccl = ClassLoader.getClassLoader(caller);
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2710
            final ClassLoader cl = getClassLoader0();
18766
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2711
            if (which != Member.PUBLIC) {
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2712
                if (ccl != cl) {
28c62f5e9a47 8007035: deprecate public void SecurityManager.checkMemberAccess(Class<?> clazz, int which)
mchung
parents: 18546
diff changeset
  2713
                    s.checkPermission(SecurityConstants.CHECK_MEMBER_ACCESS_PERMISSION);
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2714
                }
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2715
            }
18263
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2716
            this.checkPackageAccess(ccl, checkProxyInterfaces);
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2717
        }
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2718
    }
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2719
18263
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2720
    /*
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2721
     * Checks if a client loaded in ClassLoader ccl is allowed to access this
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2722
     * class under the current package access policy. If access is denied,
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2723
     * throw a SecurityException.
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2724
     */
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2725
    private void checkPackageAccess(final ClassLoader ccl, boolean checkProxyInterfaces) {
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2726
        final SecurityManager s = System.getSecurityManager();
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2727
        if (s != null) {
69df685432b7 8011139: (reflect) Revise checking in getEnclosingClass
jfranck
parents: 18253
diff changeset
  2728
            final ClassLoader cl = getClassLoader0();
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16743
diff changeset
  2729
16087
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2730
            if (ReflectUtil.needsPackageAccessCheck(ccl, cl)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2731
                String name = this.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2732
                int i = name.lastIndexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2733
                if (i != -1) {
16087
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2734
                    // skip the package access check on a proxy class in default proxy package
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2735
                    String pkg = name.substring(0, i);
18244
a1031f4526b2 8011557: Improve reflection utility classes
mchung
parents: 18234
diff changeset
  2736
                    if (!Proxy.isProxyClass(this) || ReflectUtil.isNonPublicProxyClass(this)) {
16087
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2737
                        s.checkPackageAccess(pkg);
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2738
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2739
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2740
            }
16087
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2741
            // check package access on the proxy interfaces
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2742
            if (checkProxyInterfaces && Proxy.isProxyClass(this)) {
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2743
                ReflectUtil.checkProxyPackageAccess(ccl, this.getInterfaces());
89b565a23835 7197546: (proxy) Reflect about creating reflective proxies
mchung
parents: 14014
diff changeset
  2744
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2745
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2746
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2747
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2748
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2749
     * Add a package name prefix if the name is not absolute Remove leading "/"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2750
     * if name is absolute
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2751
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2752
    private String resolveName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2753
        if (!name.startsWith("/")) {
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  2754
            Class<?> c = this;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2755
            while (c.isArray()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2756
                c = c.getComponentType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2757
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2758
            String baseName = c.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2759
            int index = baseName.lastIndexOf('.');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2760
            if (index != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2761
                name = baseName.substring(0, index).replace('.', '/')
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2762
                    +"/"+name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2763
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2764
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2765
            name = name.substring(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2766
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2767
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2768
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2769
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2770
    /**
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2771
     * Atomic operations support.
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2772
     */
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2773
    private static class Atomic {
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2774
        // initialize Unsafe machinery here, since we need to call Class.class instance method
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2775
        // and have to avoid calling it in the static initializer of the Class class...
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2776
        private static final Unsafe unsafe = Unsafe.getUnsafe();
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2777
        // offset of Class.reflectionData instance field
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2778
        private static final long reflectionDataOffset;
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2779
        // offset of Class.annotationType instance field
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2780
        private static final long annotationTypeOffset;
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2781
        // offset of Class.annotationData instance field
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2782
        private static final long annotationDataOffset;
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2783
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2784
        static {
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2785
            Field[] fields = Class.class.getDeclaredFields0(false); // bypass caches
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2786
            reflectionDataOffset = objectFieldOffset(fields, "reflectionData");
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2787
            annotationTypeOffset = objectFieldOffset(fields, "annotationType");
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2788
            annotationDataOffset = objectFieldOffset(fields, "annotationData");
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2789
        }
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2790
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2791
        private static long objectFieldOffset(Field[] fields, String fieldName) {
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2792
            Field field = searchFields(fields, fieldName);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2793
            if (field == null) {
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2794
                throw new Error("No " + fieldName + " field found in java.lang.Class");
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2795
            }
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2796
            return unsafe.objectFieldOffset(field);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2797
        }
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2798
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2799
        static <T> boolean casReflectionData(Class<?> clazz,
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2800
                                             SoftReference<ReflectionData<T>> oldData,
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2801
                                             SoftReference<ReflectionData<T>> newData) {
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2802
            return unsafe.compareAndSwapObject(clazz, reflectionDataOffset, oldData, newData);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2803
        }
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2804
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2805
        static <T> boolean casAnnotationType(Class<?> clazz,
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2806
                                             AnnotationType oldType,
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2807
                                             AnnotationType newType) {
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2808
            return unsafe.compareAndSwapObject(clazz, annotationTypeOffset, oldType, newType);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2809
        }
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2810
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2811
        static <T> boolean casAnnotationData(Class<?> clazz,
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2812
                                             AnnotationData oldData,
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2813
                                             AnnotationData newData) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2814
            return unsafe.compareAndSwapObject(clazz, annotationDataOffset, oldData, newData);
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2815
        }
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2816
    }
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2817
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2818
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2819
     * Reflection support.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2820
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2821
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2822
    // reflection data that might get invalidated when JVM TI RedefineClasses() is called
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  2823
    private static class ReflectionData<T> {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2824
        volatile Field[] declaredFields;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2825
        volatile Field[] publicFields;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2826
        volatile Method[] declaredMethods;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2827
        volatile Method[] publicMethods;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2828
        volatile Constructor<T>[] declaredConstructors;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2829
        volatile Constructor<T>[] publicConstructors;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2830
        // Intermediate results for getFields and getMethods
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2831
        volatile Field[] declaredPublicFields;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2832
        volatile Method[] declaredPublicMethods;
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2833
        volatile Class<?>[] interfaces;
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2834
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2835
        // Value of classRedefinedCount when we created this ReflectionData instance
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2836
        final int redefinedCount;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2837
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2838
        ReflectionData(int redefinedCount) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2839
            this.redefinedCount = redefinedCount;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2840
        }
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2841
    }
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2842
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
  2843
    private transient volatile SoftReference<ReflectionData<T>> reflectionData;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2844
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2845
    // Incremented by the VM on each call to JVM TI RedefineClasses()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2846
    // that redefines this class or a superclass.
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  2847
    private transient volatile int classRedefinedCount;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2848
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2849
    // Lazily create and cache ReflectionData
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2850
    private ReflectionData<T> reflectionData() {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2851
        SoftReference<ReflectionData<T>> reflectionData = this.reflectionData;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2852
        int classRedefinedCount = this.classRedefinedCount;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2853
        ReflectionData<T> rd;
42162
b5b738635d55 8169880: Remove the sun.reflect.noCaches option
redestad
parents: 41891
diff changeset
  2854
        if (reflectionData != null &&
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2855
            (rd = reflectionData.get()) != null &&
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2856
            rd.redefinedCount == classRedefinedCount) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2857
            return rd;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2858
        }
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2859
        // else no SoftReference or cleared SoftReference or stale ReflectionData
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2860
        // -> create and replace new instance
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2861
        return newReflectionData(reflectionData, classRedefinedCount);
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2862
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2863
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2864
    private ReflectionData<T> newReflectionData(SoftReference<ReflectionData<T>> oldReflectionData,
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2865
                                                int classRedefinedCount) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2866
        while (true) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2867
            ReflectionData<T> rd = new ReflectionData<>(classRedefinedCount);
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2868
            // try to CAS it...
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2869
            if (Atomic.casReflectionData(this, oldReflectionData, new SoftReference<>(rd))) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2870
                return rd;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2871
            }
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2872
            // else retry
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2873
            oldReflectionData = this.reflectionData;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2874
            classRedefinedCount = this.classRedefinedCount;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2875
            if (oldReflectionData != null &&
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2876
                (rd = oldReflectionData.get()) != null &&
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2877
                rd.redefinedCount == classRedefinedCount) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2878
                return rd;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2879
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2880
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2881
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2882
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2883
    // Generic signature handling
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2884
    private native String getGenericSignature0();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2885
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2886
    // Generic info repository; lazily initialized
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
  2887
    private transient volatile ClassRepository genericInfo;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2888
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2889
    // accessor for factory
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2890
    private GenericsFactory getFactory() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2891
        // create scope and factory
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2892
        return CoreReflectionFactory.make(this, ClassScope.make(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2893
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2894
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2895
    // accessor for generic info repository;
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2896
    // generic info is lazily initialized
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2897
    private ClassRepository getGenericInfo() {
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2898
        ClassRepository genericInfo = this.genericInfo;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2899
        if (genericInfo == null) {
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2900
            String signature = getGenericSignature0();
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2901
            if (signature == null) {
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2902
                genericInfo = ClassRepository.NONE;
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2903
            } else {
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2904
                genericInfo = ClassRepository.make(signature, getFactory());
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2905
            }
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2906
            this.genericInfo = genericInfo;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2907
        }
18179
9b6ad451b521 8016236: Class.getGenericInterfaces performance improvement
shade
parents: 18139
diff changeset
  2908
        return (genericInfo != ClassRepository.NONE) ? genericInfo : null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2909
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2910
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2911
    // Annotations handling
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  2912
    native byte[] getRawAnnotations();
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  2913
    // Since 1.8
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  2914
    native byte[] getRawTypeAnnotations();
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  2915
    static byte[] getExecutableTypeAnnotationBytes(Executable ex) {
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  2916
        return getReflectionFactory().getExecutableTypeAnnotationBytes(ex);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  2917
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2918
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2919
    native ConstantPool getConstantPool();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2920
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2921
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2922
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2923
    // java.lang.reflect.Field handling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2924
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2925
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2926
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2927
    // Returns an array of "root" fields. These Field objects must NOT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2928
    // be propagated to the outside world, but must instead be copied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2929
    // via ReflectionFactory.copyField.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2930
    private Field[] privateGetDeclaredFields(boolean publicOnly) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2931
        Field[] res;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2932
        ReflectionData<T> rd = reflectionData();
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2933
        if (rd != null) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2934
            res = publicOnly ? rd.declaredPublicFields : rd.declaredFields;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2935
            if (res != null) return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2936
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2937
        // No cached value available; request value from VM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2938
        res = Reflection.filterFields(this, getDeclaredFields0(publicOnly));
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2939
        if (rd != null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2940
            if (publicOnly) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2941
                rd.declaredPublicFields = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2942
            } else {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2943
                rd.declaredFields = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2944
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2945
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2946
        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2947
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2948
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2949
    // Returns an array of "root" fields. These Field objects must NOT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2950
    // be propagated to the outside world, but must instead be copied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2951
    // via ReflectionFactory.copyField.
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2952
    private Field[] privateGetPublicFields(Set<Class<?>> traversedInterfaces) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2953
        Field[] res;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2954
        ReflectionData<T> rd = reflectionData();
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2955
        if (rd != null) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2956
            res = rd.publicFields;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2957
            if (res != null) return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2958
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2959
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2960
        // No cached value available; compute value recursively.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2961
        // Traverse in correct order for getField().
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
  2962
        List<Field> fields = new ArrayList<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2963
        if (traversedInterfaces == null) {
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
  2964
            traversedInterfaces = new HashSet<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2965
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2966
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2967
        // Local fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2968
        Field[] tmp = privateGetDeclaredFields(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2969
        addAll(fields, tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2970
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2971
        // Direct superinterfaces, recursively
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2972
        for (Class<?> c : getInterfaces()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2973
            if (!traversedInterfaces.contains(c)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2974
                traversedInterfaces.add(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2975
                addAll(fields, c.privateGetPublicFields(traversedInterfaces));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2976
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2977
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2978
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2979
        // Direct superclass, recursively
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2980
        if (!isInterface()) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2981
            Class<?> c = getSuperclass();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2982
            if (c != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2983
                addAll(fields, c.privateGetPublicFields(traversedInterfaces));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2984
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2985
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2986
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2987
        res = new Field[fields.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2988
        fields.toArray(res);
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2989
        if (rd != null) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  2990
            rd.publicFields = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2991
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2992
        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2993
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2994
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  2995
    private static void addAll(Collection<Field> c, Field[] o) {
22581
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  2996
        for (Field f : o) {
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  2997
            c.add(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2998
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2999
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3001
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3002
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3003
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3004
    // java.lang.reflect.Constructor handling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3005
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3006
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3007
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3008
    // Returns an array of "root" constructors. These Constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3009
    // objects must NOT be propagated to the outside world, but must
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3010
    // instead be copied via ReflectionFactory.copyConstructor.
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3011
    private Constructor<T>[] privateGetDeclaredConstructors(boolean publicOnly) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3012
        Constructor<T>[] res;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3013
        ReflectionData<T> rd = reflectionData();
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3014
        if (rd != null) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3015
            res = publicOnly ? rd.publicConstructors : rd.declaredConstructors;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3016
            if (res != null) return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3017
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3018
        // No cached value available; request value from VM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3019
        if (isInterface()) {
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  3020
            @SuppressWarnings("unchecked")
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  3021
            Constructor<T>[] temporaryRes = (Constructor<T>[]) new Constructor<?>[0];
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  3022
            res = temporaryRes;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3023
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3024
            res = getDeclaredConstructors0(publicOnly);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3025
        }
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3026
        if (rd != null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3027
            if (publicOnly) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3028
                rd.publicConstructors = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3029
            } else {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3030
                rd.declaredConstructors = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3031
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3032
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3033
        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3034
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3035
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3036
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3037
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3038
    // java.lang.reflect.Method handling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3039
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3040
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3042
    // Returns an array of "root" methods. These Method objects must NOT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3043
    // be propagated to the outside world, but must instead be copied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3044
    // via ReflectionFactory.copyMethod.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3045
    private Method[] privateGetDeclaredMethods(boolean publicOnly) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3046
        Method[] res;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3047
        ReflectionData<T> rd = reflectionData();
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3048
        if (rd != null) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3049
            res = publicOnly ? rd.declaredPublicMethods : rd.declaredMethods;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3050
            if (res != null) return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3051
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3052
        // No cached value available; request value from VM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3053
        res = Reflection.filterMethods(this, getDeclaredMethods0(publicOnly));
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3054
        if (rd != null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3055
            if (publicOnly) {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3056
                rd.declaredPublicMethods = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3057
            } else {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3058
                rd.declaredMethods = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3059
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3060
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3061
        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3062
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3063
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3064
    // Returns an array of "root" methods. These Method objects must NOT
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3065
    // be propagated to the outside world, but must instead be copied
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3066
    // via ReflectionFactory.copyMethod.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3067
    private Method[] privateGetPublicMethods() {
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3068
        Method[] res;
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3069
        ReflectionData<T> rd = reflectionData();
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3070
        if (rd != null) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3071
            res = rd.publicMethods;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3072
            if (res != null) return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3073
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3074
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3075
        // No cached value available; compute value recursively.
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3076
        // Start by fetching public declared methods...
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3077
        PublicMethods pms = new PublicMethods();
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3078
        for (Method m : privateGetDeclaredMethods(/* publicOnly */ true)) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3079
            pms.merge(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3080
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3081
        // ...then recur over superclass methods...
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3082
        Class<?> sc = getSuperclass();
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3083
        if (sc != null) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3084
            for (Method m : sc.privateGetPublicMethods()) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3085
                pms.merge(m);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3086
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3087
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3088
        // ...and finally over direct superinterfaces.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3089
        for (Class<?> intf : getInterfaces(/* cloneArray */ false)) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3090
            for (Method m : intf.privateGetPublicMethods()) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3091
                // static interface methods are not inherited
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3092
                if (!Modifier.isStatic(m.getModifiers())) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3093
                    pms.merge(m);
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3094
                }
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3095
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3096
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3097
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3098
        res = pms.toArray();
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3099
        if (rd != null) {
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3100
            rd.publicMethods = res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3101
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3102
        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3104
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3105
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3106
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3107
    // Helpers for fetchers of one field, method, or constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3108
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3109
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3110
    // This method does not copy the returned Field object!
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3111
    private static Field searchFields(Field[] fields, String name) {
22581
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  3112
        for (Field field : fields) {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3113
            if (field.getName().equals(name)) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3114
                return field;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3115
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3117
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3119
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3120
    // Returns a "root" Field object. This Field object must NOT
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3121
    // be propagated to the outside world, but must instead be copied
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3122
    // via ReflectionFactory.copyField.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3123
    private Field getField0(String name) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3124
        // Note: the intent is that the search algorithm this routine
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3125
        // uses be equivalent to the ordering imposed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3126
        // privateGetPublicFields(). It fetches only the declared
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3127
        // public fields for each class, however, to reduce the number
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3128
        // of Field objects which have to be created for the common
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3129
        // case where the field being requested is declared in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3130
        // class which is being queried.
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3131
        Field res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3132
        // Search declared public fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3133
        if ((res = searchFields(privateGetDeclaredFields(true), name)) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3134
            return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3136
        // Direct superinterfaces, recursively
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3137
        Class<?>[] interfaces = getInterfaces(/* cloneArray */ false);
22581
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  3138
        for (Class<?> c : interfaces) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3139
            if ((res = c.getField0(name)) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3140
                return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3141
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3142
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3143
        // Direct superclass, recursively
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3144
        if (!isInterface()) {
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  3145
            Class<?> c = getSuperclass();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3146
            if (c != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3147
                if ((res = c.getField0(name)) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3148
                    return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3149
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3150
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3152
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3153
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3154
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3155
    // This method does not copy the returned Method object!
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3156
    private static Method searchMethods(Method[] methods,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3157
                                        String name,
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  3158
                                        Class<?>[] parameterTypes)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3159
    {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3160
        ReflectionFactory fact = getReflectionFactory();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3161
        Method res = null;
22581
e868cde95050 8032779: Update code in java.lang to use newer language features
psandoz
parents: 21970
diff changeset
  3162
        for (Method m : methods) {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3163
            if (m.getName().equals(name)
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3164
                && arrayContentsEq(parameterTypes,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3165
                                   fact.getExecutableSharedParameterTypes(m))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3166
                && (res == null
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3167
                    || (res.getReturnType() != m.getReturnType()
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3168
                        && res.getReturnType().isAssignableFrom(m.getReturnType()))))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3169
                res = m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3170
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3171
        return res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3173
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3174
    private static final Class<?>[] EMPTY_CLASS_ARRAY = new Class<?>[0];
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3175
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3176
    // Returns a "root" Method object. This Method object must NOT
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3177
    // be propagated to the outside world, but must instead be copied
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3178
    // via ReflectionFactory.copyMethod.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3179
    private Method getMethod0(String name, Class<?>[] parameterTypes) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3180
        PublicMethods.MethodList res = getMethodsRecursive(
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3181
            name,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3182
            parameterTypes == null ? EMPTY_CLASS_ARRAY : parameterTypes,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3183
            /* includeStatic */ true);
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3184
        return res == null ? null : res.getMostSpecific();
24867
c3514175b6cd 8029674: (reflect) getMethods returns default methods that are not members of the class
jfranck
parents: 24865
diff changeset
  3185
    }
c3514175b6cd 8029674: (reflect) getMethods returns default methods that are not members of the class
jfranck
parents: 24865
diff changeset
  3186
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3187
    // Returns a list of "root" Method objects. These Method objects must NOT
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3188
    // be propagated to the outside world, but must instead be copied
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3189
    // via ReflectionFactory.copyMethod.
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3190
    private PublicMethods.MethodList getMethodsRecursive(String name,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3191
                                                         Class<?>[] parameterTypes,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3192
                                                         boolean includeStatic) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3193
        // 1st check declared public methods
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3194
        Method[] methods = privateGetDeclaredMethods(/* publicOnly */ true);
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3195
        PublicMethods.MethodList res = PublicMethods.MethodList
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3196
            .filter(methods, name, parameterTypes, includeStatic);
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3197
        // if there is at least one match among declared methods, we need not
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3198
        // search any further as such match surely overrides matching methods
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3199
        // declared in superclass(es) or interface(s).
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3200
        if (res != null) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3201
            return res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3202
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3203
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3204
        // if there was no match among declared methods,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3205
        // we must consult the superclass (if any) recursively...
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3206
        Class<?> sc = getSuperclass();
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3207
        if (sc != null) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3208
            res = sc.getMethodsRecursive(name, parameterTypes, includeStatic);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3209
        }
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3210
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3211
        // ...and coalesce the superclass methods with methods obtained
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3212
        // from directly implemented interfaces excluding static methods...
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3213
        for (Class<?> intf : getInterfaces(/* cloneArray */ false)) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3214
            res = PublicMethods.MethodList.merge(
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3215
                res, intf.getMethodsRecursive(name, parameterTypes,
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3216
                                              /* includeStatic */ false));
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3217
        }
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3218
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3219
        return res;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3221
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3222
    // Returns a "root" Constructor object. This Constructor object must NOT
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3223
    // be propagated to the outside world, but must instead be copied
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3224
    // via ReflectionFactory.copyConstructor.
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  3225
    private Constructor<T> getConstructor0(Class<?>[] parameterTypes,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3226
                                        int which) throws NoSuchMethodException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3227
    {
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3228
        ReflectionFactory fact = getReflectionFactory();
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3229
        Constructor<T>[] constructors = privateGetDeclaredConstructors((which == Member.PUBLIC));
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3230
        for (Constructor<T> constructor : constructors) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3231
            if (arrayContentsEq(parameterTypes,
42997
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3232
                                fact.getExecutableSharedParameterTypes(constructor))) {
5f83f2054eca 8172190: Re-apply the fix for bugs 8062389, 8029459, 8061950
plevart
parents: 42948
diff changeset
  3233
                return constructor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3234
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3235
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3236
        throw new NoSuchMethodException(getName() + ".<init>" + argumentTypesToString(parameterTypes));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3237
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3238
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3239
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3240
    // Other helpers and base implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3241
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3242
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3243
    private static boolean arrayContentsEq(Object[] a1, Object[] a2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3244
        if (a1 == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3245
            return a2 == null || a2.length == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3246
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3247
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3248
        if (a2 == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3249
            return a1.length == 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3250
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3251
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3252
        if (a1.length != a2.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3253
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3254
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3255
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3256
        for (int i = 0; i < a1.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3257
            if (a1[i] != a2[i]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3258
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3259
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3260
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3261
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3262
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3264
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3265
    private static Field[] copyFields(Field[] arg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3266
        Field[] out = new Field[arg.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3267
        ReflectionFactory fact = getReflectionFactory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3268
        for (int i = 0; i < arg.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3269
            out[i] = fact.copyField(arg[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3270
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3271
        return out;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3272
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3273
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3274
    private static Method[] copyMethods(Method[] arg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3275
        Method[] out = new Method[arg.length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3276
        ReflectionFactory fact = getReflectionFactory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3277
        for (int i = 0; i < arg.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3278
            out[i] = fact.copyMethod(arg[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3279
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3280
        return out;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3281
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3282
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3283
    private static <U> Constructor<U>[] copyConstructors(Constructor<U>[] arg) {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3284
        Constructor<U>[] out = arg.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3285
        ReflectionFactory fact = getReflectionFactory();
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3286
        for (int i = 0; i < out.length; i++) {
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3287
            out[i] = fact.copyConstructor(out[i]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3288
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3289
        return out;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3290
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3291
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3292
    private native Field[]       getDeclaredFields0(boolean publicOnly);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3293
    private native Method[]      getDeclaredMethods0(boolean publicOnly);
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3294
    private native Constructor<T>[] getDeclaredConstructors0(boolean publicOnly);
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  3295
    private native Class<?>[]   getDeclaredClasses0();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3296
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  3297
    private static String        argumentTypesToString(Class<?>[] argTypes) {
26219
1a19360ff122 8054714: Use StringJoiner where it makes the code cleaner
igerasim
parents: 25991
diff changeset
  3298
        StringJoiner sj = new StringJoiner(", ", "(", ")");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3299
        if (argTypes != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3300
            for (int i = 0; i < argTypes.length; i++) {
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  3301
                Class<?> c = argTypes[i];
26219
1a19360ff122 8054714: Use StringJoiner where it makes the code cleaner
igerasim
parents: 25991
diff changeset
  3302
                sj.add((c == null) ? "null" : c.getName());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3303
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3304
        }
26219
1a19360ff122 8054714: Use StringJoiner where it makes the code cleaner
igerasim
parents: 25991
diff changeset
  3305
        return sj.toString();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3306
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3307
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3308
    /** use serialVersionUID from JDK 1.1 for interoperability */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3309
    private static final long serialVersionUID = 3206093459760846163L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3310
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3311
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3312
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3313
     * Class Class is special cased within the Serialization Stream Protocol.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3314
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3315
     * A Class instance is written initially into an ObjectOutputStream in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3316
     * following format:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3317
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3318
     *      {@code TC_CLASS} ClassDescriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3319
     *      A ClassDescriptor is a special cased serialization of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3320
     *      a {@code java.io.ObjectStreamClass} instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3321
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3322
     * A new handle is generated for the initial time the class descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3323
     * is written into the stream. Future references to the class descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3324
     * are written as references to the initial class descriptor instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3325
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3326
     * @see java.io.ObjectStreamClass
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3327
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3328
    private static final ObjectStreamField[] serialPersistentFields =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3329
        new ObjectStreamField[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3330
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3331
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3332
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3333
     * Returns the assertion status that would be assigned to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3334
     * class if it were to be initialized at the time this method is invoked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3335
     * If this class has had its assertion status set, the most recent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3336
     * setting will be returned; otherwise, if any package default assertion
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3337
     * status pertains to this class, the most recent setting for the most
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3338
     * specific pertinent package default assertion status is returned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3339
     * otherwise, if this class is not a system class (i.e., it has a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3340
     * class loader) its class loader's default assertion status is returned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3341
     * otherwise, the system class default assertion status is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3342
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3343
     * Few programmers will have any need for this method; it is provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3344
     * for the benefit of the JRE itself.  (It allows a class to determine at
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3345
     * the time that it is initialized whether assertions should be enabled.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3346
     * Note that this method is not guaranteed to return the actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3347
     * assertion status that was (or will be) associated with the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3348
     * class when it was (or will be) initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3349
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3350
     * @return the desired assertion status of the specified class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3351
     * @see    java.lang.ClassLoader#setClassAssertionStatus
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3352
     * @see    java.lang.ClassLoader#setPackageAssertionStatus
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3353
     * @see    java.lang.ClassLoader#setDefaultAssertionStatus
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3354
     * @since  1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3355
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3356
    public boolean desiredAssertionStatus() {
42169
b5f96c169364 8169993: Class::desiredAssertionStatus should call getClassLoader0
redestad
parents: 42162
diff changeset
  3357
        ClassLoader loader = getClassLoader0();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3358
        // If the loader is null this is a system class, so ask the VM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3359
        if (loader == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3360
            return desiredAssertionStatus0(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3361
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 2174
diff changeset
  3362
        // If the classloader has been initialized with the assertion
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 2174
diff changeset
  3363
        // directives, ask it. Otherwise, ask the VM.
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 2174
diff changeset
  3364
        synchronized(loader.assertionLock) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 2174
diff changeset
  3365
            if (loader.classAssertionStatus != null) {
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 2174
diff changeset
  3366
                return loader.desiredAssertionStatus(getName());
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 2174
diff changeset
  3367
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3368
        }
2448
1e8128f3ff61 4735126: (cl) ClassLoader.loadClass locks all instances in chain when delegating
valeriep
parents: 2174
diff changeset
  3369
        return desiredAssertionStatus0(this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3370
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3371
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3372
    // Retrieves the desired assertion status of this class from the VM
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 3845
diff changeset
  3373
    private static native boolean desiredAssertionStatus0(Class<?> clazz);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3374
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3376
     * Returns true if and only if this class was declared as an enum in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3377
     * source code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3378
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3379
     * @return true if and only if this class was declared as an enum in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3380
     *     source code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3381
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3382
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3383
    public boolean isEnum() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3384
        // An enum must both directly extend java.lang.Enum and have
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3385
        // the ENUM bit set; classes for specialized enum constants
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3386
        // don't do the former.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3387
        return (this.getModifiers() & ENUM) != 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3388
        this.getSuperclass() == java.lang.Enum.class;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3390
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3391
    // Fetches the factory for reflective objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3392
    private static ReflectionFactory getReflectionFactory() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3393
        if (reflectionFactory == null) {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3394
            reflectionFactory =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3395
                java.security.AccessController.doPrivileged
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36511
diff changeset
  3396
                    (new ReflectionFactory.GetReflectionFactoryAction());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3397
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3398
        return reflectionFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3399
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3400
    private static ReflectionFactory reflectionFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3401
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3402
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3403
     * Returns the elements of this enum class or null if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3404
     * Class object does not represent an enum type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3406
     * @return an array containing the values comprising the enum class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3407
     *     represented by this Class object in the order they're
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3408
     *     declared, or null if this Class object does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3409
     *     represent an enum type
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3410
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3411
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3412
    public T[] getEnumConstants() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3413
        T[] values = getEnumConstantsShared();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3414
        return (values != null) ? values.clone() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3415
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3416
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3417
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3418
     * Returns the elements of this enum class or null if this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3419
     * Class object does not represent an enum type;
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3420
     * identical to getEnumConstants except that the result is
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3421
     * uncloned, cached, and shared by all callers.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3422
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3423
    T[] getEnumConstantsShared() {
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3424
        T[] constants = enumConstants;
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3425
        if (constants == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3426
            if (!isEnum()) return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3427
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3428
                final Method values = getMethod("values");
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3429
                java.security.AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 29113
diff changeset
  3430
                    new java.security.PrivilegedAction<>() {
51
6fe31bc95bbc 6600143: Remove another 450 unnecessary casts
martin
parents: 2
diff changeset
  3431
                        public Void run() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3432
                                values.setAccessible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3433
                                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3434
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3435
                        });
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  3436
                @SuppressWarnings("unchecked")
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  3437
                T[] temporaryConstants = (T[])values.invoke(null);
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3438
                enumConstants = constants = temporaryConstants;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3439
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3440
            // These can happen when users concoct enum-like classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3441
            // that don't comply with the enum spec.
10147
cd5c99f94305 6380161: (reflect) Exception from newInstance() not chained to cause.
darcy
parents: 10142
diff changeset
  3442
            catch (InvocationTargetException | NoSuchMethodException |
cd5c99f94305 6380161: (reflect) Exception from newInstance() not chained to cause.
darcy
parents: 10142
diff changeset
  3443
                   IllegalAccessException ex) { return null; }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3444
        }
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3445
        return constants;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3446
    }
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3447
    private transient volatile T[] enumConstants;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3448
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3449
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3450
     * Returns a map from simple name to enum constant.  This package-private
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3451
     * method is used internally by Enum to implement
14014
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 13589
diff changeset
  3452
     * {@code public static <T extends Enum<T>> T valueOf(Class<T>, String)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3453
     * efficiently.  Note that the map is returned by this method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3454
     * created lazily on first use.  Typically it won't ever get created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3455
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3456
    Map<String, T> enumConstantDirectory() {
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3457
        Map<String, T> directory = enumConstantDirectory;
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3458
        if (directory == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3459
            T[] universe = getEnumConstantsShared();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3460
            if (universe == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3461
                throw new IllegalArgumentException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3462
                    getName() + " is not an enum type");
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3463
            directory = new HashMap<>(2 * universe.length);
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3464
            for (T constant : universe) {
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3465
                directory.put(((Enum<?>)constant).name(), constant);
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3466
            }
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3467
            enumConstantDirectory = directory;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3468
        }
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3469
        return directory;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3470
    }
34774
03b4e6dc367b 8145680: Remove unnecessary explicit initialization of volatile variables in java.base
redestad
parents: 33674
diff changeset
  3471
    private transient volatile Map<String, T> enumConstantDirectory;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3472
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3473
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3474
     * Casts an object to the class or interface represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3475
     * by this {@code Class} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3476
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3477
     * @param obj the object to be cast
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3478
     * @return the object after casting, or null if obj is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3479
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3480
     * @throws ClassCastException if the object is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3481
     * null and is not assignable to the type T.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3482
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3483
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3484
     */
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  3485
    @SuppressWarnings("unchecked")
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 31074
diff changeset
  3486
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3487
    public T cast(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3488
        if (obj != null && !isInstance(obj))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3489
            throw new ClassCastException(cannotCastMsg(obj));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3490
        return (T) obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3491
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3492
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3493
    private String cannotCastMsg(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3494
        return "Cannot cast " + obj.getClass().getName() + " to " + getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3495
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3496
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3497
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3498
     * Casts this {@code Class} object to represent a subclass of the class
11016
e2665f4ac6d2 7110111: Minor Java SE javadoc & Constructor clean up
lancea
parents: 10419
diff changeset
  3499
     * represented by the specified class object.  Checks that the cast
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3500
     * is valid, and throws a {@code ClassCastException} if it is not.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3501
     * this method succeeds, it always returns a reference to this class object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3502
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3503
     * <p>This method is useful when a client needs to "narrow" the type of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3504
     * a {@code Class} object to pass it to an API that restricts the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3505
     * {@code Class} objects that it is willing to accept.  A cast would
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3506
     * generate a compile-time warning, as the correctness of the cast
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3507
     * could not be checked at runtime (because generic types are implemented
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3508
     * by erasure).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3509
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18276
diff changeset
  3510
     * @param <U> the type to cast this class object to
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18276
diff changeset
  3511
     * @param clazz the class of the type to cast this class object to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3512
     * @return this {@code Class} object, cast to represent a subclass of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3513
     *    the specified class object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3514
     * @throws ClassCastException if this {@code Class} object does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3515
     *    represent a subclass of the specified class (here "subclass" includes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3516
     *    the class itself).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3517
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3518
     */
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 11016
diff changeset
  3519
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3520
    public <U> Class<? extends U> asSubclass(Class<U> clazz) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3521
        if (clazz.isAssignableFrom(this))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3522
            return (Class<? extends U>) this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3523
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3524
            throw new ClassCastException(this.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3525
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3526
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3527
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3528
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3529
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3530
     */
15511
8f45487ac694 8005712: Simplify support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 15510
diff changeset
  3531
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3532
    public <A extends Annotation> A getAnnotation(Class<A> annotationClass) {
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3533
        Objects.requireNonNull(annotationClass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3534
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3535
        return (A) annotationData().annotations.get(annotationClass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3536
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3537
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3538
    /**
16051
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3539
     * {@inheritDoc}
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3540
     * @throws NullPointerException {@inheritDoc}
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3541
     * @since 1.5
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3542
     */
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3543
    @Override
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3544
    public boolean isAnnotationPresent(Class<? extends Annotation> annotationClass) {
17710
ce8517f5a2fe 8014836: Have GenericDeclaration extend AnnotatedElement
darcy
parents: 16906
diff changeset
  3545
        return GenericDeclaration.super.isAnnotationPresent(annotationClass);
16051
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3546
    }
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3547
649a03329639 8009267: Restore isAnnotationPresent methods in public AnnotatedElement implementations
darcy
parents: 15659
diff changeset
  3548
    /**
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3549
     * @throws NullPointerException {@inheritDoc}
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3550
     * @since 1.8
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3551
     */
15659
e575dab44ff5 8007278: Rename j.l.r.AnnotatedElement.getAnnotations(Class) to getAnnotationsByType(Class)
jfranck
parents: 15534
diff changeset
  3552
    @Override
e575dab44ff5 8007278: Rename j.l.r.AnnotatedElement.getAnnotations(Class) to getAnnotationsByType(Class)
jfranck
parents: 15534
diff changeset
  3553
    public <A extends Annotation> A[] getAnnotationsByType(Class<A> annotationClass) {
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3554
        Objects.requireNonNull(annotationClass);
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3555
21316
ca0a7cd228c9 8004912: Repeating annotations - getAnnotationsByType(Class<T>) is not working as expected for few inheritance scenarios
alundblad
parents: 21314
diff changeset
  3556
        AnnotationData annotationData = annotationData();
ca0a7cd228c9 8004912: Repeating annotations - getAnnotationsByType(Class<T>) is not working as expected for few inheritance scenarios
alundblad
parents: 21314
diff changeset
  3557
        return AnnotationSupport.getAssociatedAnnotations(annotationData.declaredAnnotations,
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 21334
diff changeset
  3558
                                                          this,
21316
ca0a7cd228c9 8004912: Repeating annotations - getAnnotationsByType(Class<T>) is not working as expected for few inheritance scenarios
alundblad
parents: 21314
diff changeset
  3559
                                                          annotationClass);
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3560
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3561
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3562
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3563
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3564
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3565
    public Annotation[] getAnnotations() {
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3566
        return AnnotationParser.toArray(annotationData().annotations);
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3567
    }
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3568
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3569
    /**
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3570
     * @throws NullPointerException {@inheritDoc}
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3571
     * @since 1.8
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3572
     */
15659
e575dab44ff5 8007278: Rename j.l.r.AnnotatedElement.getAnnotations(Class) to getAnnotationsByType(Class)
jfranck
parents: 15534
diff changeset
  3573
    @Override
15511
8f45487ac694 8005712: Simplify support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 15510
diff changeset
  3574
    @SuppressWarnings("unchecked")
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3575
    public <A extends Annotation> A getDeclaredAnnotation(Class<A> annotationClass) {
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3576
        Objects.requireNonNull(annotationClass);
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3577
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3578
        return (A) annotationData().declaredAnnotations.get(annotationClass);
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3579
    }
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3580
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3581
    /**
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3582
     * @throws NullPointerException {@inheritDoc}
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3583
     * @since 1.8
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3584
     */
15659
e575dab44ff5 8007278: Rename j.l.r.AnnotatedElement.getAnnotations(Class) to getAnnotationsByType(Class)
jfranck
parents: 15534
diff changeset
  3585
    @Override
e575dab44ff5 8007278: Rename j.l.r.AnnotatedElement.getAnnotations(Class) to getAnnotationsByType(Class)
jfranck
parents: 15534
diff changeset
  3586
    public <A extends Annotation> A[] getDeclaredAnnotationsByType(Class<A> annotationClass) {
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3587
        Objects.requireNonNull(annotationClass);
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
  3588
21316
ca0a7cd228c9 8004912: Repeating annotations - getAnnotationsByType(Class<T>) is not working as expected for few inheritance scenarios
alundblad
parents: 21314
diff changeset
  3589
        return AnnotationSupport.getDirectlyAndIndirectlyPresent(annotationData().declaredAnnotations,
ca0a7cd228c9 8004912: Repeating annotations - getAnnotationsByType(Class<T>) is not working as expected for few inheritance scenarios
alundblad
parents: 21314
diff changeset
  3590
                                                                 annotationClass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3591
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3592
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3593
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3594
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3595
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3596
    public Annotation[] getDeclaredAnnotations()  {
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3597
        return AnnotationParser.toArray(annotationData().declaredAnnotations);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3598
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3599
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3600
    // annotation data that might get invalidated when JVM TI RedefineClasses() is called
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3601
    private static class AnnotationData {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3602
        final Map<Class<? extends Annotation>, Annotation> annotations;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3603
        final Map<Class<? extends Annotation>, Annotation> declaredAnnotations;
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3604
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3605
        // Value of classRedefinedCount when we created this AnnotationData instance
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3606
        final int redefinedCount;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3607
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3608
        AnnotationData(Map<Class<? extends Annotation>, Annotation> annotations,
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3609
                       Map<Class<? extends Annotation>, Annotation> declaredAnnotations,
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3610
                       int redefinedCount) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3611
            this.annotations = annotations;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3612
            this.declaredAnnotations = declaredAnnotations;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3613
            this.redefinedCount = redefinedCount;
15259
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3614
        }
33fec5f9630b 8005232: (JEP-149) Class Instance size reduction
dholmes
parents: 14910
diff changeset
  3615
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3616
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3617
    // Annotations cache
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3618
    @SuppressWarnings("UnusedDeclaration")
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
  3619
    private transient volatile AnnotationData annotationData;
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3620
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3621
    private AnnotationData annotationData() {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3622
        while (true) { // retry loop
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3623
            AnnotationData annotationData = this.annotationData;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3624
            int classRedefinedCount = this.classRedefinedCount;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3625
            if (annotationData != null &&
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3626
                annotationData.redefinedCount == classRedefinedCount) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3627
                return annotationData;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3628
            }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3629
            // null or stale annotationData -> optimistically create new instance
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3630
            AnnotationData newAnnotationData = createAnnotationData(classRedefinedCount);
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3631
            // try to install it
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3632
            if (Atomic.casAnnotationData(this, annotationData, newAnnotationData)) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3633
                // successfully installed new AnnotationData
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3634
                return newAnnotationData;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3635
            }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3636
        }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3637
    }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3638
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3639
    private AnnotationData createAnnotationData(int classRedefinedCount) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3640
        Map<Class<? extends Annotation>, Annotation> declaredAnnotations =
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3641
            AnnotationParser.parseAnnotations(getRawAnnotations(), getConstantPool(), this);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3642
        Class<?> superClass = getSuperclass();
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3643
        Map<Class<? extends Annotation>, Annotation> annotations = null;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3644
        if (superClass != null) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3645
            Map<Class<? extends Annotation>, Annotation> superAnnotations =
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3646
                superClass.annotationData().annotations;
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3647
            for (Map.Entry<Class<? extends Annotation>, Annotation> e : superAnnotations.entrySet()) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3648
                Class<? extends Annotation> annotationClass = e.getKey();
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3649
                if (AnnotationType.getInstance(annotationClass).isInherited()) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3650
                    if (annotations == null) { // lazy construction
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3651
                        annotations = new LinkedHashMap<>((Math.max(
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3652
                                declaredAnnotations.size(),
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3653
                                Math.min(12, declaredAnnotations.size() + superAnnotations.size())
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3654
                            ) * 4 + 2) / 3
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3655
                        );
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3656
                    }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3657
                    annotations.put(annotationClass, e.getValue());
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3658
                }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3659
            }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3660
        }
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3661
        if (annotations == null) {
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3662
            // no inherited annotations -> share the Map with declaredAnnotations
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3663
            annotations = declaredAnnotations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3664
        } else {
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3665
            // at least one inherited annotation -> declared may override inherited
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3666
            annotations.putAll(declaredAnnotations);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3667
        }
20180
0dedfb3744f2 8011940: java.lang.Class.getAnnotations() always enters synchronized method
plevart
parents: 19834
diff changeset
  3668
        return new AnnotationData(annotations, declaredAnnotations, classRedefinedCount);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3669
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3670
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3671
    // Annotation types cache their internal (AnnotationType) form
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3672
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  3673
    @SuppressWarnings("UnusedDeclaration")
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
  3674
    private transient volatile AnnotationType annotationType;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3675
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  3676
    boolean casAnnotationType(AnnotationType oldType, AnnotationType newType) {
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 18766
diff changeset
  3677
        return Atomic.casAnnotationType(this, oldType, newType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3679
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3680
    AnnotationType getAnnotationType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3681
        return annotationType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3682
    }
11536
5be4f16d98bc 7030453: JSR 292 ClassValue.get method is too slow
jrose
parents: 11275
diff changeset
  3683
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 21334
diff changeset
  3684
    Map<Class<? extends Annotation>, Annotation> getDeclaredAnnotationMap() {
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 21334
diff changeset
  3685
        return annotationData().declaredAnnotations;
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 21334
diff changeset
  3686
    }
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 21334
diff changeset
  3687
11536
5be4f16d98bc 7030453: JSR 292 ClassValue.get method is too slow
jrose
parents: 11275
diff changeset
  3688
    /* Backing store of user-defined values pertaining to this class.
5be4f16d98bc 7030453: JSR 292 ClassValue.get method is too slow
jrose
parents: 11275
diff changeset
  3689
     * Maintained by the ClassValue class.
5be4f16d98bc 7030453: JSR 292 ClassValue.get method is too slow
jrose
parents: 11275
diff changeset
  3690
     */
5be4f16d98bc 7030453: JSR 292 ClassValue.get method is too slow
jrose
parents: 11275
diff changeset
  3691
    transient ClassValue.ClassValueMap classValueMap;
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3692
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3693
    /**
20481
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3694
     * Returns an {@code AnnotatedType} object that represents the use of a
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3695
     * type to specify the superclass of the entity represented by this {@code
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3696
     * Class} object. (The <em>use</em> of type Foo to specify the superclass
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3697
     * in '...  extends Foo' is distinct from the <em>declaration</em> of type
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3698
     * Foo.)
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3699
     *
20481
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3700
     * <p> If this {@code Class} object represents a type whose declaration
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3701
     * does not explicitly indicate an annotated superclass, then the return
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3702
     * value is an {@code AnnotatedType} object representing an element with no
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3703
     * annotations.
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3704
     *
20481
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3705
     * <p> If this {@code Class} represents either the {@code Object} class, an
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3706
     * interface type, an array type, a primitive type, or void, the return
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3707
     * value is {@code null}.
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3708
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18276
diff changeset
  3709
     * @return an object representing the superclass
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3710
     * @since 1.8
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3711
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3712
    public AnnotatedType getAnnotatedSuperclass() {
19588
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3713
        if (this == Object.class ||
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3714
                isInterface() ||
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3715
                isArray() ||
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3716
                isPrimitive() ||
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3717
                this == Void.TYPE) {
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3718
            return null;
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3719
        }
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3720
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3721
        return TypeAnnotationParser.buildAnnotatedSuperclass(getRawTypeAnnotations(), getConstantPool(), this);
5f7c7cdd74e9 8022343: j.l.Class.getAnnotatedSuperclass() doesn't return null in some cases
jfranck
parents: 19031
diff changeset
  3722
    }
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3723
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3724
    /**
20481
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3725
     * Returns an array of {@code AnnotatedType} objects that represent the use
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3726
     * of types to specify superinterfaces of the entity represented by this
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3727
     * {@code Class} object. (The <em>use</em> of type Foo to specify a
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3728
     * superinterface in '... implements Foo' is distinct from the
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3729
     * <em>declaration</em> of type Foo.)
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3730
     *
20481
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3731
     * <p> If this {@code Class} object represents a class, the return value is
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3732
     * an array containing objects representing the uses of interface types to
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3733
     * specify interfaces implemented by the class. The order of the objects in
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3734
     * the array corresponds to the order of the interface types used in the
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3735
     * 'implements' clause of the declaration of this {@code Class} object.
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3736
     *
20481
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3737
     * <p> If this {@code Class} object represents an interface, the return
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3738
     * value is an array containing objects representing the uses of interface
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3739
     * types to specify interfaces directly extended by the interface. The
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3740
     * order of the objects in the array corresponds to the order of the
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3741
     * interface types used in the 'extends' clause of the declaration of this
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3742
     * {@code Class} object.
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3743
     *
20481
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3744
     * <p> If this {@code Class} object represents a class or interface whose
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3745
     * declaration does not explicitly indicate any annotated superinterfaces,
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3746
     * the return value is an array of length 0.
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3747
     *
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3748
     * <p> If this {@code Class} object represents either the {@code Object}
2735b307d256 8007072: Update Core Reflection for Type Annotations to match latest spec
jfranck
parents: 20180
diff changeset
  3749
     * class, an array type, a primitive type, or void, the return value is an
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3750
     * array of length 0.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3751
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18276
diff changeset
  3752
     * @return an array representing the superinterfaces
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3753
     * @since 1.8
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3754
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3755
    public AnnotatedType[] getAnnotatedInterfaces() {
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3756
         return TypeAnnotationParser.buildAnnotatedInterfaces(getRawTypeAnnotations(), getConstantPool(), this);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3757
    }
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 15259
diff changeset
  3758
}