jdk/src/share/classes/java/lang/System.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 8399 0a7dab5d5922
child 10360 d1a6fafde2fa
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8399
diff changeset
     2
 * Copyright (c) 1994, 2011, 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: 4355
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: 4355
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: 4355
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4355
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4355
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.Properties;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.PropertyPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.StringTokenizer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.AccessController;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.PrivilegedAction;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.security.AllPermission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.nio.channels.Channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.nio.channels.spi.SelectorProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.nio.ch.Interruptible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.reflect.Reflection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import sun.security.util.SecurityConstants;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import sun.reflect.annotation.AnnotationType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * The <code>System</code> class contains several useful class fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * and methods. It cannot be instantiated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * <p>Among the facilities provided by the <code>System</code> class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * are standard input, standard output, and error output streams;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * access to externally defined properties and environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * variables; a means of loading files and libraries; and a utility
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * method for quickly copying a portion of an array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * @author  unascribed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @since   JDK1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
public final class System {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
    56
    /* register the natives via the static initializer.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
    57
     *
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
    58
     * VM will invoke the initializeSystemClass method to complete
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
    59
     * the initialization for this class separated from clinit.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
    60
     * Note that to use properties set by the VM, see the constraints
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
    61
     * described in the initializeSystemClass method.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
    62
     */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    private static native void registerNatives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        registerNatives();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    /** Don't let anyone instantiate this class */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private System() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * The "standard" input stream. This stream is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * open and ready to supply input data. Typically this stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * corresponds to keyboard input or another input source specified by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * the host environment or user.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     */
6001
8d781af24b23 6967533: Epoch bug: ExceptionInInitializerError on systems with uninitialized clock
martin
parents: 5506
diff changeset
    78
    public final static InputStream in = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * The "standard" output stream. This stream is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * open and ready to accept output data. Typically this stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * corresponds to display output or another output destination
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * specified by the host environment or user.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * For simple stand-alone Java applications, a typical way to write
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * a line of output data is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     *     System.out.println(data)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * See the <code>println</code> methods in class <code>PrintStream</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @see     java.io.PrintStream#println()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @see     java.io.PrintStream#println(boolean)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @see     java.io.PrintStream#println(char)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * @see     java.io.PrintStream#println(char[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * @see     java.io.PrintStream#println(double)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @see     java.io.PrintStream#println(float)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @see     java.io.PrintStream#println(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @see     java.io.PrintStream#println(long)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * @see     java.io.PrintStream#println(java.lang.Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @see     java.io.PrintStream#println(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     */
6001
8d781af24b23 6967533: Epoch bug: ExceptionInInitializerError on systems with uninitialized clock
martin
parents: 5506
diff changeset
   105
    public final static PrintStream out = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * The "standard" error output stream. This stream is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * open and ready to accept output data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * Typically this stream corresponds to display output or another
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * output destination specified by the host environment or user. By
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * convention, this output stream is used to display error messages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * or other information that should come to the immediate attention
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * of a user even if the principal output stream, the value of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * variable <code>out</code>, has been redirected to a file or other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * destination that is typically not continuously monitored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
6001
8d781af24b23 6967533: Epoch bug: ExceptionInInitializerError on systems with uninitialized clock
martin
parents: 5506
diff changeset
   119
    public final static PrintStream err = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    /* The security manager for the system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    private static volatile SecurityManager security = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Reassigns the "standard" input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * <p>First, if there is a security manager, its <code>checkPermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * method is called with a <code>RuntimePermission("setIO")</code> permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *  to see if it's ok to reassign the "standard" input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param in the new standard input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @throws SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *        if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *        <code>checkPermission</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     *        reassigning of the standard input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @see SecurityManager#checkPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @see java.lang.RuntimePermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * @since   JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public static void setIn(InputStream in) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        checkIO();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        setIn0(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * Reassigns the "standard" output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * <p>First, if there is a security manager, its <code>checkPermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * method is called with a <code>RuntimePermission("setIO")</code> permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     *  to see if it's ok to reassign the "standard" output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * @param out the new standard output stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @throws SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     *        if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *        <code>checkPermission</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     *        reassigning of the standard output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @see SecurityManager#checkPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @see java.lang.RuntimePermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * @since   JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public static void setOut(PrintStream out) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        checkIO();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        setOut0(out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * Reassigns the "standard" error output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * <p>First, if there is a security manager, its <code>checkPermission</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * method is called with a <code>RuntimePermission("setIO")</code> permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *  to see if it's ok to reassign the "standard" error output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @param err the new standard error output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * @throws SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     *        if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     *        <code>checkPermission</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *        reassigning of the standard error output stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * @see SecurityManager#checkPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @see java.lang.RuntimePermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @since   JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public static void setErr(PrintStream err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        checkIO();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        setErr0(err);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    private static volatile Console cons = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * Returns the unique {@link java.io.Console Console} object associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * with the current Java virtual machine, if any.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * @return  The system console, if any, otherwise <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @since   1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     public static Console console() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
         if (cons == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
             synchronized (System.class) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                 cons = sun.misc.SharedSecrets.getJavaIOAccess().console();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
             }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
         return cons;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * Returns the channel inherited from the entity that created this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * <p> This method returns the channel obtained by invoking the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * {@link java.nio.channels.spi.SelectorProvider#inheritedChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * inheritedChannel} method of the system-wide default
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * {@link java.nio.channels.spi.SelectorProvider} object. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * <p> In addition to the network-oriented channels described in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * {@link java.nio.channels.spi.SelectorProvider#inheritedChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * inheritedChannel}, this method may return other kinds of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * channels in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @return  The inherited channel, if any, otherwise <tt>null</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     *          If a security manager is present and it does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     *          permit access to the channel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    public static Channel inheritedChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        return SelectorProvider.provider().inheritedChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    private static void checkIO() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            sm.checkPermission(new RuntimePermission("setIO"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    private static native void setIn0(InputStream in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    private static native void setOut0(PrintStream out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    private static native void setErr0(PrintStream err);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * Sets the System security.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * <p> If there is a security manager already installed, this method first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * calls the security manager's <code>checkPermission</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * with a <code>RuntimePermission("setSecurityManager")</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * permission to ensure it's ok to replace the existing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * security manager.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * This may result in throwing a <code>SecurityException</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * <p> Otherwise, the argument is established as the current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * security manager. If the argument is <code>null</code> and no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * security manager has been established, then no action is taken and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * the method simply returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @param      s   the security manager.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * @exception  SecurityException  if the security manager has already
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *             been set and its <code>checkPermission</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *             doesn't allow it to be replaced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * @see #getSecurityManager
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * @see SecurityManager#checkPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @see java.lang.RuntimePermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    public static
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    void setSecurityManager(final SecurityManager s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            s.checkPackageAccess("java.lang");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            // no-op
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        setSecurityManager0(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    private static synchronized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    void setSecurityManager0(final SecurityManager s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            // ask the currently installed security manager if we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            // can replace it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            sm.checkPermission(new RuntimePermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                                     ("setSecurityManager"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        if ((s != null) && (s.getClass().getClassLoader() != null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            // New security manager class is not on bootstrap classpath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            // Cause policy to get initialized before we install the new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            // security manager, in order to prevent infinite loops when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            // trying to initialize the policy (which usually involves
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
            // accessing some security and/or system properties, which in turn
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            // calls the installed security manager's checkPermission method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
            // which will loop infinitely if there is a non-system class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            // (in this case: the new security manager class) on the stack).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            AccessController.doPrivileged(new PrivilegedAction<Object>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                    s.getClass().getProtectionDomain().implies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
                        (SecurityConstants.ALL_PERMISSION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        security = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * Gets the system security interface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * @return  if a security manager has already been established for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     *          current application, then that security manager is returned;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     *          otherwise, <code>null</code> is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * @see     #setSecurityManager
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    public static SecurityManager getSecurityManager() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        return security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * Returns the current time in milliseconds.  Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * while the unit of time of the return value is a millisecond,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * the granularity of the value depends on the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     * operating system and may be larger.  For example, many
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * operating systems measure time in units of tens of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * milliseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * <p> See the description of the class <code>Date</code> for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * a discussion of slight discrepancies that may arise between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * "computer time" and coordinated universal time (UTC).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * @return  the difference, measured in milliseconds, between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *          the current time and midnight, January 1, 1970 UTC.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @see     java.util.Date
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public static native long currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Returns the current value of the running Java Virtual Machine's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * high-resolution time source, in nanoseconds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * <p>This method can only be used to measure elapsed time and is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * not related to any other notion of system or wall-clock time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * The value returned represents nanoseconds since some fixed but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * arbitrary <i>origin</i> time (perhaps in the future, so values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * may be negative).  The same origin is used by all invocations of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * this method in an instance of a Java virtual machine; other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * virtual machine instances are likely to use a different origin.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * <p>This method provides nanosecond precision, but not necessarily
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * nanosecond resolution (that is, how frequently the value changes)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * - no guarantees are made except that the resolution is at least as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * good as that of {@link #currentTimeMillis()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * <p>Differences in successive calls that span greater than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * approximately 292 years (2<sup>63</sup> nanoseconds) will not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * correctly compute elapsed time due to numerical overflow.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * <p>The values returned by this method become meaningful only when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * the difference between two such values, obtained within the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * instance of a Java virtual machine, is computed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * <p> For example, to measure how long some code takes to execute:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * long startTime = System.nanoTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * // ... the code being measured ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     * long estimatedTime = System.nanoTime() - startTime;}</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * <p>To compare two nanoTime values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     *  <pre> {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * long t0 = System.nanoTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * long t1 = System.nanoTime();}</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * one should use {@code t1 - t0 < 0}, not {@code t1 < t0},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * because of the possibility of numerical overflow.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * @return the current value of the running Java Virtual Machine's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *         high-resolution time source, in nanoseconds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    public static native long nanoTime();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * Copies an array from the specified source array, beginning at the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * specified position, to the specified position of the destination array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * A subsequence of array components are copied from the source
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * array referenced by <code>src</code> to the destination array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * referenced by <code>dest</code>. The number of components copied is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * equal to the <code>length</code> argument. The components at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * positions <code>srcPos</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * <code>srcPos+length-1</code> in the source array are copied into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * positions <code>destPos</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * <code>destPos+length-1</code>, respectively, of the destination
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * If the <code>src</code> and <code>dest</code> arguments refer to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * same array object, then the copying is performed as if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * components at positions <code>srcPos</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     * <code>srcPos+length-1</code> were first copied to a temporary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
     * array with <code>length</code> components and then the contents of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
     * the temporary array were copied into positions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * <code>destPos</code> through <code>destPos+length-1</code> of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * destination array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * If <code>dest</code> is <code>null</code>, then a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * <code>NullPointerException</code> is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * If <code>src</code> is <code>null</code>, then a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * <code>NullPointerException</code> is thrown and the destination
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * array is not modified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * Otherwise, if any of the following is true, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * <code>ArrayStoreException</code> is thrown and the destination is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * not modified:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * <li>The <code>src</code> argument refers to an object that is not an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *     array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * <li>The <code>dest</code> argument refers to an object that is not an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *     array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * <li>The <code>src</code> argument and <code>dest</code> argument refer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     *     to arrays whose component types are different primitive types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * <li>The <code>src</code> argument refers to an array with a primitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *    component type and the <code>dest</code> argument refers to an array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     *     with a reference component type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * <li>The <code>src</code> argument refers to an array with a reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     *    component type and the <code>dest</code> argument refers to an array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     *     with a primitive component type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * Otherwise, if any of the following is true, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * <code>IndexOutOfBoundsException</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * thrown and the destination is not modified:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * <li>The <code>srcPos</code> argument is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * <li>The <code>destPos</code> argument is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * <li>The <code>length</code> argument is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * <li><code>srcPos+length</code> is greater than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     *     <code>src.length</code>, the length of the source array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * <li><code>destPos+length</code> is greater than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     *     <code>dest.length</code>, the length of the destination array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * Otherwise, if any actual component of the source array from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * position <code>srcPos</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * <code>srcPos+length-1</code> cannot be converted to the component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * type of the destination array by assignment conversion, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     * <code>ArrayStoreException</code> is thrown. In this case, let
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * <b><i>k</i></b> be the smallest nonnegative integer less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * length such that <code>src[srcPos+</code><i>k</i><code>]</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * cannot be converted to the component type of the destination
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * array; when the exception is thrown, source array components from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * positions <code>srcPos</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * <code>srcPos+</code><i>k</i><code>-1</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * will already have been copied to destination array positions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * <code>destPos</code> through
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * <code>destPos+</code><i>k</I><code>-1</code> and no other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * positions of the destination array will have been modified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * (Because of the restrictions already itemized, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * paragraph effectively applies only to the situation where both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * arrays have component types that are reference types.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * @param      src      the source array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * @param      srcPos   starting position in the source array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     * @param      dest     the destination array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @param      destPos  starting position in the destination data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * @param      length   the number of array elements to be copied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * @exception  IndexOutOfBoundsException  if copying would cause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     *               access of data outside array bounds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * @exception  ArrayStoreException  if an element in the <code>src</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     *               array could not be stored into the <code>dest</code> array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     *               because of a type mismatch.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * @exception  NullPointerException if either <code>src</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     *               <code>dest</code> is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    public static native void arraycopy(Object src,  int  srcPos,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
                                        Object dest, int destPos,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
                                        int length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * Returns the same hash code for the given object as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * would be returned by the default method hashCode(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * whether or not the given object's class overrides
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * hashCode().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * The hash code for the null reference is zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * @param x object for which the hashCode is to be calculated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * @return  the hashCode
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * @since   JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    public static native int identityHashCode(Object x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * System properties. The following properties are guaranteed to be defined:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * <dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * <dt>java.version         <dd>Java version number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * <dt>java.vendor          <dd>Java vendor specific string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * <dt>java.vendor.url      <dd>Java vendor URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * <dt>java.home            <dd>Java installation directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * <dt>java.class.version   <dd>Java class version number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * <dt>java.class.path      <dd>Java classpath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * <dt>os.name              <dd>Operating System Name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * <dt>os.arch              <dd>Operating System Architecture
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * <dt>os.version           <dd>Operating System Version
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * <dt>file.separator       <dd>File separator ("/" on Unix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * <dt>path.separator       <dd>Path separator (":" on Unix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * <dt>line.separator       <dd>Line separator ("\n" on Unix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * <dt>user.name            <dd>User account name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * <dt>user.home            <dd>User home directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * <dt>user.dir             <dd>User's current working directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * </dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
    private static Properties props;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    private static native Properties initProperties(Properties props);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * Determines the current system properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * First, if there is a security manager, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * <code>checkPropertiesAccess</code> method is called with no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * arguments. This may result in a security exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * The current set of system properties for use by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * {@link #getProperty(String)} method is returned as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * <code>Properties</code> object. If there is no current set of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * system properties, a set of system properties is first created and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * initialized. This set of system properties always includes values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * for the following keys:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * <table summary="Shows property keys and associated values">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * <tr><th>Key</th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     *     <th>Description of Associated Value</th></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * <tr><td><code>java.version</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     *     <td>Java Runtime Environment version</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * <tr><td><code>java.vendor</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     *     <td>Java Runtime Environment vendor</td></tr
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * <tr><td><code>java.vendor.url</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *     <td>Java vendor URL</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * <tr><td><code>java.home</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     *     <td>Java installation directory</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * <tr><td><code>java.vm.specification.version</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     *     <td>Java Virtual Machine specification version</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * <tr><td><code>java.vm.specification.vendor</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     *     <td>Java Virtual Machine specification vendor</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * <tr><td><code>java.vm.specification.name</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     *     <td>Java Virtual Machine specification name</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * <tr><td><code>java.vm.version</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *     <td>Java Virtual Machine implementation version</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * <tr><td><code>java.vm.vendor</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     *     <td>Java Virtual Machine implementation vendor</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * <tr><td><code>java.vm.name</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     *     <td>Java Virtual Machine implementation name</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * <tr><td><code>java.specification.version</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     *     <td>Java Runtime Environment specification  version</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * <tr><td><code>java.specification.vendor</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     *     <td>Java Runtime Environment specification  vendor</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * <tr><td><code>java.specification.name</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     *     <td>Java Runtime Environment specification  name</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * <tr><td><code>java.class.version</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     *     <td>Java class format version number</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * <tr><td><code>java.class.path</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     *     <td>Java class path</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * <tr><td><code>java.library.path</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *     <td>List of paths to search when loading libraries</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * <tr><td><code>java.io.tmpdir</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     *     <td>Default temp file path</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * <tr><td><code>java.compiler</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     *     <td>Name of JIT compiler to use</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     * <tr><td><code>java.ext.dirs</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     *     <td>Path of extension directory or directories</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * <tr><td><code>os.name</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     *     <td>Operating system name</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * <tr><td><code>os.arch</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     *     <td>Operating system architecture</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * <tr><td><code>os.version</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *     <td>Operating system version</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * <tr><td><code>file.separator</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     *     <td>File separator ("/" on UNIX)</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * <tr><td><code>path.separator</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *     <td>Path separator (":" on UNIX)</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * <tr><td><code>line.separator</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     *     <td>Line separator ("\n" on UNIX)</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * <tr><td><code>user.name</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     *     <td>User's account name</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * <tr><td><code>user.home</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     *     <td>User's home directory</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * <tr><td><code>user.dir</code></td>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     *     <td>User's current working directory</td></tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * Multiple paths in a system property value are separated by the path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * separator character of the platform.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * Note that even if the security manager does not permit the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * <code>getProperties</code> operation, it may choose to permit the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     * {@link #getProperty(String)} operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * @return     the system properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     *             <code>checkPropertiesAccess</code> method doesn't allow access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *              to the system properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * @see        #setProperties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * @see        java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * @see        java.lang.SecurityManager#checkPropertiesAccess()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     * @see        java.util.Properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
    public static Properties getProperties() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            sm.checkPropertiesAccess();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        return props;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
    /**
4355
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   629
     * Returns the system-dependent line separator string.  It always
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   630
     * returns the same value - the initial value of the {@linkplain
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   631
     * #getProperty(String) system property} {@code line.separator}.
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   632
     *
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   633
     * <p>On UNIX systems, it returns {@code "\n"}; on Microsoft
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   634
     * Windows systems it returns {@code "\r\n"}.
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   635
     */
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   636
    public static String lineSeparator() {
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   637
        return lineSeparator;
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   638
    }
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   639
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   640
    private static String lineSeparator;
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   641
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
   642
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * Sets the system properties to the <code>Properties</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * First, if there is a security manager, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * <code>checkPropertiesAccess</code> method is called with no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * arguments. This may result in a security exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * The argument becomes the current set of system properties for use
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * by the {@link #getProperty(String)} method. If the argument is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * <code>null</code>, then the current set of system properties is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * forgotten.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * @param      props   the new system properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     *             <code>checkPropertiesAccess</code> method doesn't allow access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     *              to the system properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * @see        #getProperties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * @see        java.util.Properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * @see        java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * @see        java.lang.SecurityManager#checkPropertiesAccess()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    public static void setProperties(Properties props) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
            sm.checkPropertiesAccess();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        if (props == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
            props = new Properties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
            initProperties(props);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        System.props = props;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * Gets the system property indicated by the specified key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * First, if there is a security manager, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * <code>checkPropertyAccess</code> method is called with the key as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * its argument. This may result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * If there is no current set of system properties, a set of system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * properties is first created and initialized in the same manner as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * for the <code>getProperties</code> method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * @param      key   the name of the system property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * @return     the string value of the system property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     *             or <code>null</code> if there is no property with that key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     *             <code>checkPropertyAccess</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     *              access to the specified system property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * @exception  NullPointerException if <code>key</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     *             <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * @exception  IllegalArgumentException if <code>key</code> is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * @see        #setProperty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * @see        java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * @see        java.lang.SecurityManager#checkPropertyAccess(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * @see        java.lang.System#getProperties()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    public static String getProperty(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        checkKey(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
            sm.checkPropertyAccess(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        return props.getProperty(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * Gets the system property indicated by the specified key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * First, if there is a security manager, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * <code>checkPropertyAccess</code> method is called with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * <code>key</code> as its argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     * If there is no current set of system properties, a set of system
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * properties is first created and initialized in the same manner as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * for the <code>getProperties</code> method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * @param      key   the name of the system property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * @param      def   a default value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * @return     the string value of the system property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     *             or the default value if there is no property with that key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     *             <code>checkPropertyAccess</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     *             access to the specified system property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * @exception  NullPointerException if <code>key</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     *             <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * @exception  IllegalArgumentException if <code>key</code> is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * @see        #setProperty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * @see        java.lang.SecurityManager#checkPropertyAccess(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * @see        java.lang.System#getProperties()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    public static String getProperty(String key, String def) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        checkKey(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
            sm.checkPropertyAccess(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        return props.getProperty(key, def);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * Sets the system property indicated by the specified key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * First, if a security manager exists, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * <code>SecurityManager.checkPermission</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * is called with a <code>PropertyPermission(key, "write")</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * permission. This may result in a SecurityException being thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     * If no exception is thrown, the specified property is set to the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * @param      key   the name of the system property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * @param      value the value of the system property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     * @return     the previous value of the system property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     *             or <code>null</code> if it did not have one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     *             <code>checkPermission</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     *             setting of the specified property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * @exception  NullPointerException if <code>key</code> or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     *             <code>value</code> is <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * @exception  IllegalArgumentException if <code>key</code> is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     * @see        #getProperty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     * @see        java.lang.System#getProperty(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * @see        java.lang.System#getProperty(java.lang.String, java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     * @see        java.util.PropertyPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
     * @see        SecurityManager#checkPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    public static String setProperty(String key, String value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        checkKey(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
            sm.checkPermission(new PropertyPermission(key,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                SecurityConstants.PROPERTY_WRITE_ACTION));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        return (String) props.setProperty(key, value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * Removes the system property indicated by the specified key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * First, if a security manager exists, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * <code>SecurityManager.checkPermission</code> method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * is called with a <code>PropertyPermission(key, "write")</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     * permission. This may result in a SecurityException being thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * If no exception is thrown, the specified property is removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * @param      key   the name of the system property to be removed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * @return     the previous string value of the system property,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     *             or <code>null</code> if there was no property with that key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     *             <code>checkPropertyAccess</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     *              access to the specified system property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * @exception  NullPointerException if <code>key</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     *             <code>null</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     * @exception  IllegalArgumentException if <code>key</code> is empty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     * @see        #getProperty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * @see        #setProperty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     * @see        java.util.Properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * @see        java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * @see        java.lang.SecurityManager#checkPropertiesAccess()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
    public static String clearProperty(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
        checkKey(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            sm.checkPermission(new PropertyPermission(key, "write"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        return (String) props.remove(key);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
    private static void checkKey(String key) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        if (key == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            throw new NullPointerException("key can't be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        if (key.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            throw new IllegalArgumentException("key can't be empty");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
     * Gets the value of the specified environment variable. An
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
     * environment variable is a system-dependent external named
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
     * <p>If a security manager exists, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     * {@link SecurityManager#checkPermission checkPermission}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     * method is called with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
     * <code>{@link RuntimePermission}("getenv."+name)</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
     * permission.  This may result in a {@link SecurityException}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * being thrown.  If no exception is thrown the value of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     * variable <code>name</code> is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     * <p><a name="EnvironmentVSSystemProperties"><i>System
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     * properties</i> and <i>environment variables</i></a> are both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     * conceptually mappings between names and values.  Both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
     * mechanisms can be used to pass user-defined information to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     * Java process.  Environment variables have a more global effect,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
     * because they are visible to all descendants of the process
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     * which defines them, not just the immediate Java subprocess.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * They can have subtly different semantics, such as case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     * insensitivity, on different operating systems.  For these
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     * reasons, environment variables are more likely to have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     * unintended side effects.  It is best to use system properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
     * where possible.  Environment variables should be used when a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
     * global effect is desired, or when an external system interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     * requires an environment variable (such as <code>PATH</code>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * <p>On UNIX systems the alphabetic case of <code>name</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * typically significant, while on Microsoft Windows systems it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     * typically not.  For example, the expression
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * <code>System.getenv("FOO").equals(System.getenv("foo"))</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * is likely to be true on Microsoft Windows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * @param  name the name of the environment variable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     * @return the string value of the variable, or <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     *         if the variable is not defined in the system environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * @throws NullPointerException if <code>name</code> is <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     * @throws SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
     *         if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
     *         {@link SecurityManager#checkPermission checkPermission}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
     *         method doesn't allow access to the environment variable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
     *         <code>name</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * @see    #getenv()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * @see    ProcessBuilder#environment()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
    public static String getenv(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
            sm.checkPermission(new RuntimePermission("getenv."+name));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
        return ProcessEnvironment.getenv(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * Returns an unmodifiable string map view of the current system environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * The environment is a system-dependent mapping from names to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * values which is passed from parent to child processes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * <p>If the system does not support environment variables, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * empty map is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     * <p>The returned map will never contain null keys or values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * Attempting to query the presence of a null key or value will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     * throw a {@link NullPointerException}.  Attempting to query
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     * the presence of a key or value which is not of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     * {@link String} will throw a {@link ClassCastException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     * <p>The returned map and its collection views may not obey the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     * general contract of the {@link Object#equals} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
     * {@link Object#hashCode} methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     * <p>The returned map is typically case-sensitive on all platforms.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     * <p>If a security manager exists, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
     * {@link SecurityManager#checkPermission checkPermission}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
     * method is called with a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
     * <code>{@link RuntimePermission}("getenv.*")</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
     * permission.  This may result in a {@link SecurityException} being
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
     * thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
     * <p>When passing information to a Java subprocess,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
     * <a href=#EnvironmentVSSystemProperties>system properties</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     * are generally preferred over environment variables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     * @return the environment as a map of variable names to values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     * @throws SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
     *         if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
     *         {@link SecurityManager#checkPermission checkPermission}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
     *         method doesn't allow access to the process environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
     * @see    #getenv(String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
     * @see    ProcessBuilder#environment()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
    public static java.util.Map<String,String> getenv() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        SecurityManager sm = getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
            sm.checkPermission(new RuntimePermission("getenv.*"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        return ProcessEnvironment.getenv();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
     * Terminates the currently running Java Virtual Machine. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
     * argument serves as a status code; by convention, a nonzero status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
     * code indicates abnormal termination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     * This method calls the <code>exit</code> method in class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     * <code>Runtime</code>. This method never returns normally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
     * The call <code>System.exit(n)</code> is effectively equivalent to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     * the call:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * Runtime.getRuntime().exit(n)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
     * @param      status   exit status.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
     *        if a security manager exists and its <code>checkExit</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
     *        method doesn't allow exit with the specified status.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
     * @see        java.lang.Runtime#exit(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    public static void exit(int status) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        Runtime.getRuntime().exit(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     * Runs the garbage collector.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     * Calling the <code>gc</code> method suggests that the Java Virtual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     * Machine expend effort toward recycling unused objects in order to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     * make the memory they currently occupy available for quick reuse.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * When control returns from the method call, the Java Virtual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     * Machine has made a best effort to reclaim space from all discarded
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * The call <code>System.gc()</code> is effectively equivalent to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     * call:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * Runtime.getRuntime().gc()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     * @see     java.lang.Runtime#gc()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
    public static void gc() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        Runtime.getRuntime().gc();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     * Runs the finalization methods of any objects pending finalization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * Calling this method suggests that the Java Virtual Machine expend
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * effort toward running the <code>finalize</code> methods of objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     * that have been found to be discarded but whose <code>finalize</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     * methods have not yet been run. When control returns from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * method call, the Java Virtual Machine has made a best effort to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * complete all outstanding finalizations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     * The call <code>System.runFinalization()</code> is effectively
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     * equivalent to the call:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
     * Runtime.getRuntime().runFinalization()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     * @see     java.lang.Runtime#runFinalization()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
    public static void runFinalization() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        Runtime.getRuntime().runFinalization();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     * Enable or disable finalization on exit; doing so specifies that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     * finalizers of all objects that have finalizers that have not yet been
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     * automatically invoked are to be run before the Java runtime exits.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     * By default, finalization on exit is disabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
     * <p>If there is a security manager,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
     * its <code>checkExit</code> method is first called
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
     * with 0 as its argument to ensure the exit is allowed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
     * This could result in a SecurityException.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
     * @deprecated  This method is inherently unsafe.  It may result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
     *      finalizers being called on live objects while other threads are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     *      concurrently manipulating those objects, resulting in erratic
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
     *      behavior or deadlock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
     * @param value indicating enabling or disabling of finalization
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
     *        if a security manager exists and its <code>checkExit</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
     *        method doesn't allow the exit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * @see     java.lang.Runtime#exit(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
     * @see     java.lang.Runtime#gc()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     * @see     java.lang.SecurityManager#checkExit(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * @since   JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    @Deprecated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
    public static void runFinalizersOnExit(boolean value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        Runtime.getRuntime().runFinalizersOnExit(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
     * Loads a code file with the specified filename from the local file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
     * system as a dynamic library. The filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
     * argument must be a complete path name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
     * The call <code>System.load(name)</code> is effectively equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
     * to the call:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
     * Runtime.getRuntime().load(name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
     * @param      filename   the file to load.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
     *             <code>checkLink</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
     *             loading of the specified dynamic library
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
     * @exception  UnsatisfiedLinkError  if the file does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
     * @exception  NullPointerException if <code>filename</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
     *             <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     * @see        java.lang.Runtime#load(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     * @see        java.lang.SecurityManager#checkLink(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
    public static void load(String filename) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        Runtime.getRuntime().load0(getCallerClass(), filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
     * Loads the system library specified by the <code>libname</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
     * argument. The manner in which a library name is mapped to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
     * actual system library is system dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     * The call <code>System.loadLibrary(name)</code> is effectively
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     * equivalent to the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
     * Runtime.getRuntime().loadLibrary(name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     * @param      libname   the name of the library.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     * @exception  SecurityException  if a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     *             <code>checkLink</code> method doesn't allow
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     *             loading of the specified dynamic library
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     * @exception  UnsatisfiedLinkError  if the library does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     * @exception  NullPointerException if <code>libname</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     *             <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
     * @see        java.lang.Runtime#loadLibrary(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
     * @see        java.lang.SecurityManager#checkLink(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
    public static void loadLibrary(String libname) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        Runtime.getRuntime().loadLibrary0(getCallerClass(), libname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
     * Maps a library name into a platform-specific string representing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
     * a native library.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
     * @param      libname the name of the library.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * @return     a platform-dependent native library name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     * @exception  NullPointerException if <code>libname</code> is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     *             <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
     * @see        java.lang.System#loadLibrary(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * @see        java.lang.ClassLoader#findLibrary(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * @since      1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
    public static native String mapLibraryName(String libname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
     * Initialize the system class.  Called after thread initialization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
    private static void initializeSystemClass() {
8399
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1105
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1106
        // VM might invoke JNU_NewStringPlatform() to set those encoding
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1107
        // sensitive properties (user.home, user.name, boot.class.path, etc.)
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1108
        // during "props" initialization, in which it may need access, via
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1109
        // System.getProperty(), to the related system encoding property that
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1110
        // have been initialized (put into "props") at early stage of the
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1111
        // initialization. So make sure the "props" is available at the
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1112
        // very beginning of the initialization and all system properties to
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1113
        // be put into it directly.
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1114
        props = new Properties();
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1115
        initProperties(props);  // initialized by the VM
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1116
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1117
        // There are certain system configurations that may be controlled by
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1118
        // VM options such as the maximum amount of direct memory and
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1119
        // Integer cache size used to support the object identity semantics
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1120
        // of autoboxing.  Typically, the library will obtain these values
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1121
        // from the properties set by the VM.  If the properties are for
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1122
        // internal implementation use only, these properties should be
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1123
        // removed from the system properties.
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1124
        //
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1125
        // See java.lang.Integer.IntegerCache and the
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1126
        // sun.misc.VM.saveAndRemoveProperties method for example.
8399
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1127
        //
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1128
        // Save a private copy of the system properties object that
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1129
        // can only be accessed by the internal implementation.  Remove
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1130
        // certain system properties that are not intended for public access.
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1131
        sun.misc.VM.saveAndRemoveProperties(props);
0a7dab5d5922 6999337: java.exe fails to start if some directory names in path to java binaries contain Russian characters
sherman
parents: 7668
diff changeset
  1132
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 6668
diff changeset
  1133
4355
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
  1134
        lineSeparator = props.getProperty("line.separator");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
        sun.misc.Version.init();
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2288
diff changeset
  1136
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        FileInputStream fdIn = new FileInputStream(FileDescriptor.in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
        FileOutputStream fdOut = new FileOutputStream(FileDescriptor.out);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
        FileOutputStream fdErr = new FileOutputStream(FileDescriptor.err);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        setIn0(new BufferedInputStream(fdIn));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
        setOut0(new PrintStream(new BufferedOutputStream(fdOut, 128), true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
        setErr0(new PrintStream(new BufferedOutputStream(fdErr, 128), true));
6668
bf6309ced0b6 6888546: restore System.initializeSystemClasses
mchung
parents: 6001
diff changeset
  1143
        // Load the zip library now in order to keep java.util.zip.ZipFile
bf6309ced0b6 6888546: restore System.initializeSystemClasses
mchung
parents: 6001
diff changeset
  1144
        // from trying to use itself to load this library later.
bf6309ced0b6 6888546: restore System.initializeSystemClasses
mchung
parents: 6001
diff changeset
  1145
        loadLibrary("zip");
bf6309ced0b6 6888546: restore System.initializeSystemClasses
mchung
parents: 6001
diff changeset
  1146
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        // Setup Java signal handlers for HUP, TERM, and INT (where available).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
        Terminator.setup();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
        // Initialize any miscellenous operating system settings that need to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
        // set for the class libraries. Currently this is no-op everywhere except
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
        // for Windows where the process-wide error mode is set before the java.io
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
        // classes are used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
        sun.misc.VM.initializeOSEnvironment();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        // Subsystems that are invoked during initialization can invoke
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
        // sun.misc.VM.isBooted() in order to avoid doing things that should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
        // wait until the application class loader has been set up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
        sun.misc.VM.booted();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
        // The main thread is not added to its thread group in the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
        // way as other threads; we must do it ourselves here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
        Thread current = Thread.currentThread();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
        current.getThreadGroup().add(current);
6668
bf6309ced0b6 6888546: restore System.initializeSystemClasses
mchung
parents: 6001
diff changeset
  1165
bf6309ced0b6 6888546: restore System.initializeSystemClasses
mchung
parents: 6001
diff changeset
  1166
        // register shared secrets
bf6309ced0b6 6888546: restore System.initializeSystemClasses
mchung
parents: 6001
diff changeset
  1167
        setJavaLangAccess();
3111
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2703
diff changeset
  1168
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
3111
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2703
diff changeset
  1170
    private static void setJavaLangAccess() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
        // Allow privileged classes outside of java.lang
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
        sun.misc.SharedSecrets.setJavaLangAccess(new sun.misc.JavaLangAccess(){
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
            public sun.reflect.ConstantPool getConstantPool(Class klass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
                return klass.getConstantPool();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
            public void setAnnotationType(Class klass, AnnotationType type) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
                klass.setAnnotationType(type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
            public AnnotationType getAnnotationType(Class klass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
                return klass.getAnnotationType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
            public <E extends Enum<E>>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
                    E[] getEnumConstantsShared(Class<E> klass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
                return klass.getEnumConstantsShared();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
            public void blockedOn(Thread t, Interruptible b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
                t.blockedOn(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
            }
2703
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2425
diff changeset
  1189
            public void registerShutdownHook(int slot, boolean registerShutdownInProgress, Runnable hook) {
acd4d6a53e3e 6829503: addShutdownHook fails if called after shutdown has commenced.
mchung
parents: 2425
diff changeset
  1190
                Shutdown.add(slot, registerShutdownInProgress, hook);
2277
445a331b4a8b 6810254: Lazily instantiate the shared secret access objects
mchung
parents: 2
diff changeset
  1191
            }
2947
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
  1192
            public int getStackTraceDepth(Throwable t) {
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
  1193
                return t.getStackTraceDepth();
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
  1194
            }
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
  1195
            public StackTraceElement getStackTraceElement(Throwable t, int i) {
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
  1196
                return t.getStackTraceElement(i);
b0135c99348e 6511515: poor performance of LogRecord.inferCaller depending on java.lang.Throwable.getStackTraceElement
martin
parents: 2703
diff changeset
  1197
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
    /* returns the class of the caller. */
4355
12d58d6de82f 6900043: Add method to return line.separator property
martin
parents: 3288
diff changeset
  1202
    static Class<?> getCallerClass() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        // NOTE use of more generic Reflection.getCallerClass()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        return Reflection.getCallerClass(3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
}