src/java.base/share/classes/jdk/internal/access/JavaLangAccess.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 55693 9a97b1393e72
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
55693
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
     2
 * Copyright (c) 2003, 2019, 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
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 51772
diff changeset
    26
package jdk.internal.access;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
14676
985410ec95e3 7154390: Add support for repeating annotations in j.l.r.AnnotatedElement
jfranck
parents: 14342
diff changeset
    28
import java.lang.annotation.Annotation;
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
    29
import java.lang.module.ModuleDescriptor;
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    30
import java.lang.reflect.Executable;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    31
import java.lang.reflect.Method;
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
    32
import java.net.URI;
50820
35f52a3cd6bd 8205058: (fs) Files read/writeString should throw CharacterCodingException instead of IOException with an IllegalArgumentException as cause
joehw
parents: 50552
diff changeset
    33
import java.nio.charset.CharacterCodingException;
50552
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
    34
import java.nio.charset.Charset;
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;
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    37
import java.util.Iterator;
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    38
import java.util.List;
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    39
import java.util.Map;
36972
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
    40
import java.util.concurrent.ConcurrentHashMap;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
    41
import java.util.stream.Stream;
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
    42
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
    43
import jdk.internal.module.ServicesCatalog;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36972
diff changeset
    44
import jdk.internal.reflect.ConstantPool;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import sun.reflect.annotation.AnnotationType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.nio.ch.Interruptible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
public interface JavaLangAccess {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    49
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    50
    /**
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    51
     * Returns the list of {@code Method} objects for the declared public
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    52
     * methods of this class or interface that have the specified method name
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    53
     * and parameter types.
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    54
     */
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    55
    List<Method> getDeclaredPublicMethods(Class<?> klass, String name, Class<?>... parameterTypes);
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 37363
diff changeset
    56
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    57
    /**
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    58
     * Return the constant pool for a class.
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
    59
     */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    60
    ConstantPool getConstantPool(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    /**
47859
065700a01c96 8180437: Remaining renames of CAS misnomer "swap" => "set"
psandoz
parents: 47216
diff changeset
    63
     * Compare-And-Set the AnnotationType instance corresponding to this class.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     */
18827
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    66
    boolean casAnnotationType(Class<?> klass, AnnotationType oldType, AnnotationType newType);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * Get the AnnotationType instance corresponding to this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     * (This method only applies to annotation types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     */
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 5506
diff changeset
    72
    AnnotationType getAnnotationType(Class<?> klass);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    /**
21358
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    75
     * 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
    76
     */
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    77
    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
    78
d41ff832d4f6 8027170: Annotations declared on super-super-class should be overridden by super-class.
alundblad
parents: 20831
diff changeset
    79
    /**
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    80
     * 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
    81
     * of this Class' annotations.
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    82
     */
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    83
    byte[] getRawClassAnnotations(Class<?> klass);
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    84
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    85
    /**
ecbd9c8bef12 7122142: (ann) Race condition between isAnnotationPresent and getAnnotations
plevart
parents: 17426
diff changeset
    86
     * 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
    87
     * of this Class' type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    88
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    89
    byte[] getRawClassTypeAnnotations(Class<?> klass);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    90
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
     * Get the array of bytes that is the class-file representation
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    93
     * of this Executable's type annotations.
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    94
     */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    95
    byte[] getRawExecutableTypeAnnotations(Executable executable);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    96
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 14676
diff changeset
    97
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Returns the elements of an enum class or null if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * Class object does not represent an enum type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * the result is uncloned, cached, and shared by all callers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    <E extends Enum<E>> E[] getEnumConstantsShared(Class<E> klass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   104
    /**
49001
ce06058197a4 8198562: (ch) Separate blocking and non-blocking code paths (part 1)
alanb
parents: 48262
diff changeset
   105
     * Set current thread's blocker field.
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   106
     */
49001
ce06058197a4 8198562: (ch) Separate blocking and non-blocking code paths (part 1)
alanb
parents: 48262
diff changeset
   107
    void blockedOn(Interruptible b);
2277
445a331b4a8b 6810254: Lazily instantiate the shared secret access objects
mchung
parents: 2
diff changeset
   108
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   109
    /**
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   110
     * Registers a shutdown hook.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   111
     *
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   112
     * It is expected that this method with registerShutdownInProgress=true
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   113
     * 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
   114
     * 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
   115
     * hooks.
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   116
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   117
     * @param slot  the slot in the shutdown hook array, whose element
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   118
     *              will be invoked in order during shutdown
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   119
     * @param registerShutdownInProgress true to allow the hook
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   120
     *        to be registered even if the shutdown is in progress.
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   121
     * @param hook  the hook to be registered
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   122
     *
30655
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   123
     * @throws IllegalStateException if shutdown is in progress and
d83f50188ca9 8080422: some docs cleanup for core libs
avstepan
parents: 25859
diff changeset
   124
     *         the slot is not valid to register.
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   125
     */
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2277
diff changeset
   126
    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
   127
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
   128
    /**
20805
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   129
     * Returns a new Thread with the given Runnable and an
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   130
     * inherited AccessControlContext.
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   131
     */
ae41216325dd 8013739: Better LDAP resource management
weijun
parents: 17426
diff changeset
   132
    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
   133
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   134
    /**
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   135
     * 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
   136
     */
50fd58446d64 8027351: (ref) Private finalize method invoked in preference to protected superclass method
mchung
parents: 21358
diff changeset
   137
    void invokeFinalize(Object o) throws Throwable;
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   138
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   139
    /**
36972
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   140
     * Returns the ConcurrentHashMap used as a storage for ClassLoaderValue(s)
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   141
     * 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
   142
     */
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   143
    ConcurrentHashMap<?, ?> createOrGetClassLoaderValueMap(ClassLoader cl);
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   144
27147cde3256 8152115: (proxy) Examine performance of dynamic proxy creation
plevart
parents: 36511
diff changeset
   145
    /**
44359
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   146
     * Defines a class with the given name to a class loader.
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   147
     */
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   148
    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
   149
c6761862ca0b 8174823: Module system implementation refresh (3/2017)
alanb
parents: 43712
diff changeset
   150
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   151
     * Returns a class loaded by the bootstrap class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   152
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   153
    Class<?> findBootstrapClassOrNull(ClassLoader cl, String name);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   154
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   155
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   156
     * Define a Package of the given name and module by the given class loader.
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   157
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   158
    Package definePackage(ClassLoader cl, String name, Module module);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   159
9d0388c6b336 8142968: Module System implementation
alanb
parents: 35707
diff changeset
   160
    /**
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   161
     * Invokes Long.fastUUID
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 21628
diff changeset
   162
     */
35707
66cdb7e01a3e 8148936: Adapt UUID.toString() to Compact Strings
shade
parents: 34372
diff changeset
   163
    String fastUUID(long lsb, long msb);
43712
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   164
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   165
    /**
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   166
     * Record the non-exported packages of the modules in the given layer
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   167
     */
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   168
    void addNonExportedPackages(ModuleLayer layer);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   169
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   170
    /**
43712
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   171
     * Invalidate package access cache
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   172
     */
5dfd0950317c 8173393: Module system implementation refresh (2/2017)
alanb
parents: 42338
diff changeset
   173
    void invalidatePackageAccessCache();
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   174
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   175
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   176
     * Defines a new module to the Java virtual machine. The module
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   177
     * is defined to the given class loader.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   178
     *
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   179
     * The URI is for information purposes only, it can be {@code null}.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   180
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   181
    Module defineModule(ClassLoader loader, ModuleDescriptor descriptor, URI uri);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   182
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   183
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   184
     * Defines the unnamed module for the given class loader.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   185
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   186
    Module defineUnnamedModule(ClassLoader loader);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   187
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   188
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   189
     * Updates the readability so that module m1 reads m2. The new read edge
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   190
     * does not result in a strong reference to m2 (m2 can be GC'ed).
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   191
     *
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   192
     * This method is the same as m1.addReads(m2) but without a permission check.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   193
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   194
    void addReads(Module m1, Module m2);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   195
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   196
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   197
     * Updates module m to read all unnamed modules.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   198
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   199
    void addReadsAllUnnamed(Module m);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   200
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   201
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   202
     * Updates module m1 to export a package to module m2. The export does
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   203
     * not result in a strong reference to m2 (m2 can be GC'ed).
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   204
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   205
    void addExports(Module m1, String pkg, Module m2);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   206
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   207
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   208
     * Updates a module m to export a package to all unnamed modules.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   209
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   210
    void addExportsToAllUnnamed(Module m, String pkg);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   211
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   212
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   213
     * Updates module m1 to open a package to module m2. Opening the
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   214
     * package does not result in a strong reference to m2 (m2 can be GC'ed).
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   215
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   216
    void addOpens(Module m1, String pkg, Module m2);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   217
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   218
    /**
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   219
     * Updates module m to open a package to all unnamed modules.
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   220
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   221
    void addOpensToAllUnnamed(Module m, String pkg);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   222
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   223
    /**
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   224
     * Updates module m to open all packages returned by the given iterator.
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   225
     */
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   226
    void addOpensToAllUnnamed(Module m, Iterator<String> packages);
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   227
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   228
    /**
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   229
     * Updates module m to use a service.
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   230
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   231
    void addUses(Module m, Class<?> service);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   232
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   233
    /**
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   234
     * Returns true if module m reflectively exports a package to other
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   235
     */
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   236
    boolean isReflectivelyExported(Module module, String pn, Module other);
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   237
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   238
    /**
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   239
     * Returns true if module m reflectively opens a package to other
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   240
     */
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   241
    boolean isReflectivelyOpened(Module module, String pn, Module other);
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   242
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45004
diff changeset
   243
    /**
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   244
     * Returns the ServicesCatalog for the given Layer.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   245
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   246
    ServicesCatalog getServicesCatalog(ModuleLayer layer);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   247
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   248
    /**
47866
39db80b32b69 8191632: Typos in comments due to duplicating words
igerasim
parents: 47859
diff changeset
   249
     * Returns an ordered stream of layers. The first element is the
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   250
     * given layer, the remaining elements are its parents, in DFS order.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   251
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   252
    Stream<ModuleLayer> layers(ModuleLayer layer);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   253
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   254
    /**
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   255
     * Returns a stream of the layers that have modules defined to the
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   256
     * given class loader.
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   257
     */
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44359
diff changeset
   258
    Stream<ModuleLayer> layers(ClassLoader loader);
48262
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   259
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   260
    /**
50552
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   261
     * Constructs a new {@code String} by decoding the specified subarray of
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   262
     * bytes using the specified {@linkplain java.nio.charset.Charset charset}.
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   263
     *
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   264
     * The caller of this method shall relinquish and transfer the ownership of
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   265
     * the byte array to the callee since the later will not make a copy.
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   266
     *
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   267
     * @param bytes the byte array source
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   268
     * @param cs the Charset
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   269
     * @return the newly created string
50820
35f52a3cd6bd 8205058: (fs) Files read/writeString should throw CharacterCodingException instead of IOException with an IllegalArgumentException as cause
joehw
parents: 50552
diff changeset
   270
     * @throws CharacterCodingException for malformed or unmappable bytes
50552
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   271
     */
50820
35f52a3cd6bd 8205058: (fs) Files read/writeString should throw CharacterCodingException instead of IOException with an IllegalArgumentException as cause
joehw
parents: 50552
diff changeset
   272
    String newStringNoRepl(byte[] bytes, Charset cs) throws CharacterCodingException;
50552
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   273
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   274
    /**
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   275
     * Encode the given string into a sequence of bytes using the specified Charset.
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   276
     *
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   277
     * This method avoids copying the String's internal representation if the input
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   278
     * is ASCII.
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   279
     *
50820
35f52a3cd6bd 8205058: (fs) Files read/writeString should throw CharacterCodingException instead of IOException with an IllegalArgumentException as cause
joehw
parents: 50552
diff changeset
   280
     * This method throws CharacterCodingException instead of replacing when
50552
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   281
     * malformed input or unmappable characters are encountered.
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   282
     *
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   283
     * @param s the string to encode
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   284
     * @param cs the charset
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   285
     * @return the encoded bytes
50820
35f52a3cd6bd 8205058: (fs) Files read/writeString should throw CharacterCodingException instead of IOException with an IllegalArgumentException as cause
joehw
parents: 50552
diff changeset
   286
     * @throws CharacterCodingException for malformed input or unmappable characters
50552
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   287
     */
50820
35f52a3cd6bd 8205058: (fs) Files read/writeString should throw CharacterCodingException instead of IOException with an IllegalArgumentException as cause
joehw
parents: 50552
diff changeset
   288
    byte[] getBytesNoRepl(String s, Charset cs) throws CharacterCodingException;
50552
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   289
7439ceaae8e4 8201276: (fs) Add methods to Files for reading/writing a string from/to a file
joehw
parents: 49001
diff changeset
   290
    /**
48262
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   291
     * Returns a new string by decoding from the given utf8 bytes array.
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   292
     *
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   293
     * @param off the index of the first byte to decode
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   294
     * @param len the number of bytes to decode
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   295
     * @return the newly created string
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   296
     * @throws IllegalArgumentException for malformed or unmappable bytes.
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   297
     */
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   298
    String newStringUTF8NoRepl(byte[] bytes, int off, int len);
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   299
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   300
    /**
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   301
     * Encode the given string into a sequence of bytes using utf8.
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   302
     *
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   303
     * @param s the string to encode
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   304
     * @return the encoded bytes in utf8
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   305
     * @throws IllegalArgumentException for malformed surrogates
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   306
     */
daf3b49f4839 8184947: ZipCoder performance improvements
sherman
parents: 48065
diff changeset
   307
    byte[] getBytesUTF8NoRepl(String s);
51772
5432cebf6627 8210721: Replace legacy serial exception field with Throwable::cause
mchung
parents: 50820
diff changeset
   308
5432cebf6627 8210721: Replace legacy serial exception field with Throwable::cause
mchung
parents: 50820
diff changeset
   309
    /**
5432cebf6627 8210721: Replace legacy serial exception field with Throwable::cause
mchung
parents: 50820
diff changeset
   310
     * Set the cause of Throwable
5432cebf6627 8210721: Replace legacy serial exception field with Throwable::cause
mchung
parents: 50820
diff changeset
   311
     * @param cause set t's cause to new value
5432cebf6627 8210721: Replace legacy serial exception field with Throwable::cause
mchung
parents: 50820
diff changeset
   312
     */
5432cebf6627 8210721: Replace legacy serial exception field with Throwable::cause
mchung
parents: 50820
diff changeset
   313
    void setCause(Throwable t, Throwable cause);
55693
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   314
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   315
    /**
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   316
     * Privileged System.loadLibrary
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   317
     *
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   318
     * @param caller on behalf of which the library is being loaded
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   319
     * @param library name of the library to load
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   320
     */
9a97b1393e72 8227587: Add internal privileged System.loadLibrary
redestad
parents: 52427
diff changeset
   321
    void loadLibrary(Class<?> caller, String library);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
}