jdk/src/java.base/share/classes/jdk/internal/misc/JavaLangAccess.java
author alanb
Wed, 22 Mar 2017 16:26:27 +0000
changeset 44359 c6761862ca0b
parent 43712 5dfd0950317c
child 44545 83b611b88ac8
permissions -rw-r--r--
8174823: Module system implementation refresh (3/2017) Reviewed-by: chegar, mchung, alanb Contributed-by: alan.bateman@oracle.com, mandy.chung@oracle.com, sundararajan.athijegannathan@oracle.com, peter.levart@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
     2
 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
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: 2947
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: 2947
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2947
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
32834
e1dca5fe4de3 8137056: Move SharedSecrets and interface friends out of sun.misc
chegar
parents: 30655
diff changeset
    26
package jdk.internal.misc;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    28
import java.io.IOException;
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
    29
import java.lang.annotation.Annotation;
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    30
import java.lang.reflect.Executable;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    31
import java.lang.reflect.Layer;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    32
import java.lang.reflect.Method;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    33
import java.lang.reflect.Module;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    34
import java.net.URL;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
    35
import java.security.AccessControlContext;
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
    36
import java.security.ProtectionDomain;
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    37
import java.util.Map;
36972
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
    38
import java.util.concurrent.ConcurrentHashMap;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    39
import java.util.stream.Stream;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
    40
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36972
diff changeset
    41
import jdk.internal.reflect.ConstantPool;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import sun.reflect.annotation.AnnotationType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import sun.nio.ch.Interruptible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
public interface JavaLangAccess {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    46
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    47
    /**
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    48
     * Returns a {@code Method} object that reflects the specified public
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    49
     * member method of the given class. Returns {@code null} if the
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    50
     * method is not defined.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    51
     */
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    52
    Method getMethodOrNull(Class<?> klass, String name, Class<?>... parameterTypes);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    53
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /** Return the constant pool for a class. */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    55
    ConstantPool getConstantPool(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /**
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    58
     * Compare-And-Swap the AnnotationType instance corresponding to this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     */
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    61
    boolean casAnnotationType(Class<?> klass, AnnotationType oldType, AnnotationType newType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * Get the AnnotationType instance corresponding to this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    67
    AnnotationType getAnnotationType(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    /**
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    70
     * Get the declared annotations for a given class, indexed by their types.
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    71
     */
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    72
    Map<Class<? extends Annotation>, Annotation> getDeclaredAnnotationMap(Class<?> klass);
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    73
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    74
    /**
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    75
     * Get the array of bytes that is the class-file representation
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    76
     * of this Class' annotations.
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    77
     */
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    78
    byte[] getRawClassAnnotations(Class<?> klass);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    79
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    80
    /**
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    81
     * Get the array of bytes that is the class-file representation
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    82
     * of this Class' type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    83
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    84
    byte[] getRawClassTypeAnnotations(Class<?> klass);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    85
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    86
    /**
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    87
     * Get the array of bytes that is the class-file representation
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    88
     * of this Executable's type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    89
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    90
    byte[] getRawExecutableTypeAnnotations(Executable executable);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    91
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    92
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * Returns the elements of an enum class or null if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * Class object does not represent an enum type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * the result is uncloned, cached, and shared by all callers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    <E extends Enum<E>> E[] getEnumConstantsShared(Class<E> klass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    /** Set thread's blocker field. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    void blockedOn(Thread t, Interruptible b);
2277
445a331b4a8b 6810254: Lazily instantiate the shared secret access objects
mchung
parents: 2
diff changeset
   101
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   102
    /**
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   103
     * Registers a shutdown hook.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   104
     *
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   105
     * It is expected that this method with registerShutdownInProgress=true
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   106
     * is only used to register DeleteOnExitHook since the first file
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   107
     * may be added to the delete on exit list by the application shutdown
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   108
     * hooks.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   109
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   110
     * @param slot  the slot in the shutdown hook array, whose element
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   111
     *              will be invoked in order during shutdown
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   112
     * @param registerShutdownInProgress true to allow the hook
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   113
     *        to be registered even if the shutdown is in progress.
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   114
     * @param hook  the hook to be registered
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   115
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   116
     * @throws IllegalStateException if shutdown is in progress and
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   117
     *         the slot is not valid to register.
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   118
     */
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   119
    void registerShutdownHook(int slot, boolean registerShutdownInProgress, Runnable hook);
2947
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
   120
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
   121
    /**
17426
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   122
     * Returns a new string backed by the provided character array. The
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   123
     * character array is not copied and must never be modified after the
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   124
     * String is created, in order to fulfill String's contract.
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   125
     *
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   126
     * @param chars the character array to back the string
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   127
     * @return a newly created string whose content is the character array
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   128
     */
45db19517346 8013528: Provide SharedSecrets access to String(char[], boolean) constructor
mduigou
parents: 15511
diff changeset
   129
    String newStringUnsafe(char[] chars);
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   130
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   131
    /**
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   132
     * Returns a new Thread with the given Runnable and an
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   133
     * inherited AccessControlContext.
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   134
     */
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   135
    Thread newThreadWithAcc(Runnable target, AccessControlContext acc);
21628
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   136
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   137
    /**
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   138
     * Invokes the finalize method of the given object.
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   139
     */
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   140
    void invokeFinalize(Object o) throws Throwable;
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   141
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   142
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   143
     * Returns the boot Layer
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   144
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   145
    Layer getBootLayer();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   146
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   147
    /**
36972
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   148
     * Returns the ConcurrentHashMap used as a storage for ClassLoaderValue(s)
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   149
     * associated with the given class loader, creating it if it doesn't already exist.
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   150
     */
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   151
    ConcurrentHashMap<?, ?> createOrGetClassLoaderValueMap(ClassLoader cl);
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   152
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   153
    /**
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   154
     * Defines a class with the given name to a class loader.
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   155
     */
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   156
    Class<?> defineClass(ClassLoader cl, String name, byte[] b, ProtectionDomain pd, String source);
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   157
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   158
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   159
     * Returns a class loaded by the bootstrap class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   160
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   161
    Class<?> findBootstrapClassOrNull(ClassLoader cl, String name);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   162
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   163
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   164
     * Returns a URL to a resource with the given name in a module that is
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   165
     * defined to the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   166
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   167
    URL findResource(ClassLoader cl, String moduleName, String name) throws IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   168
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   169
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   170
     * Returns the Packages for the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   171
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   172
    Stream<Package> packages(ClassLoader cl);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   173
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   174
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   175
     * Define a Package of the given name and module by the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   176
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   177
    Package definePackage(ClassLoader cl, String name, Module module);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   178
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   179
    /**
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   180
     * Invokes Long.fastUUID
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   181
     */
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   182
    String fastUUID(long lsb, long msb);
43712
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   183
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   184
    /**
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   185
     * Invalidate package access cache
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   186
     */
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   187
    void invalidatePackageAccessCache();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
}