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