src/java.base/share/classes/java/lang/Runtime.java
author joehw
Mon, 02 Apr 2018 16:39:17 -0700
changeset 49508 8f041818aca9
parent 49203 3a225d9cabe1
child 52427 3c6aa484536c
permissions -rw-r--r--
8199176: Accessibility issues in java.base docs Reviewed-by: lancea, alanb, jjg, rriggs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
48545
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
     2
 * Copyright (c) 1995, 2018, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    29
import java.math.BigInteger;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    30
import java.util.ArrayList;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    31
import java.util.regex.Matcher;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    32
import java.util.regex.Pattern;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    33
import java.util.stream.Collectors;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    34
import java.util.Collections;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    35
import java.util.List;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    36
import java.util.Optional;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.StringTokenizer;
48922
906025796009 8198441: Replace native Runtime::runFinalization0 method with shared secrets
mchung
parents: 48545
diff changeset
    38
906025796009 8198441: Replace native Runtime::runFinalization0 method with shared secrets
mchung
parents: 48545
diff changeset
    39
import jdk.internal.misc.SharedSecrets;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 34350
diff changeset
    40
import jdk.internal.reflect.CallerSensitive;
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 34350
diff changeset
    41
import jdk.internal.reflect.Reflection;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * Every Java application has a single instance of class
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
    45
 * {@code Runtime} that allows the application to interface with
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * the environment in which the application is running. The current
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
    47
 * runtime can be obtained from the {@code getRuntime} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * An application cannot create its own instance of this class.
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
 * @see     java.lang.Runtime#getRuntime()
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24367
diff changeset
    53
 * @since   1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
public class Runtime {
34350
6beb09485bdd 8144210: Runtime.currentRuntime should be final
alanb
parents: 30042
diff changeset
    57
    private static final Runtime currentRuntime = new Runtime();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    59
    private static Version version;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
    60
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * Returns the runtime object associated with the current Java application.
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
    63
     * Most of the methods of class {@code Runtime} are instance
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     * methods and must be invoked with respect to the current runtime object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
     *
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
    66
     * @return  the {@code Runtime} object associated with the current
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     *          Java application.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public static Runtime getRuntime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        return currentRuntime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    /** Don't let anyone else instantiate this class */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private Runtime() {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * Terminates the currently running Java virtual machine by initiating its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * shutdown sequence.  This method never returns normally.  The argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * serves as a status code; by convention, a nonzero status code indicates
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * abnormal termination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     *
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
    82
     * <p> All registered {@linkplain #addShutdownHook shutdown hooks}, if any,
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
    83
     * are started in some unspecified order and allowed to run concurrently
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
    84
     * until they finish.  Once this is done the virtual machine
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
    85
     * {@linkplain #halt halts}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     *
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
    87
     * <p> If this method is invoked after all shutdown hooks have already
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
    88
     * been run and the status is nonzero then this method halts the
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
    89
     * virtual machine with the given status code. Otherwise, this method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * blocks indefinitely.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     *
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
    92
     * <p> The {@link System#exit(int) System.exit} method is the
24367
705490680527 8030709: Tidy warnings cleanup for java.lang package; minor cleanup in java.math, javax.script
yan
parents: 18776
diff changeset
    93
     * conventional and convenient means of invoking this method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @param  status
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     *         Termination status.  By convention, a nonzero status code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     *         indicates abnormal termination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @throws SecurityException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   100
     *         If a security manager is present and its
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   101
     *         {@link SecurityManager#checkExit checkExit} method does not permit
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *         exiting with the specified status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @see java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @see java.lang.SecurityManager#checkExit(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @see #addShutdownHook
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * @see #removeShutdownHook
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * @see #halt(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    public void exit(int status) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            security.checkExit(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        Shutdown.exit(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * Registers a new virtual-machine shutdown hook.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * <p> The Java virtual machine <i>shuts down</i> in response to two kinds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * of events:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *   <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 16906
diff changeset
   126
     *   <li> The program <i>exits</i> normally, when the last non-daemon
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   127
     *   thread exits or when the {@link #exit exit} (equivalently,
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 16906
diff changeset
   128
     *   {@link System#exit(int) System.exit}) method is invoked, or
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 16906
diff changeset
   130
     *   <li> The virtual machine is <i>terminated</i> in response to a
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   131
     *   user interrupt, such as typing {@code ^C}, or a system-wide event,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *   such as user logoff or system shutdown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *   </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * <p> A <i>shutdown hook</i> is simply an initialized but unstarted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * thread.  When the virtual machine begins its shutdown sequence it will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * start all registered shutdown hooks in some unspecified order and let
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * them run concurrently.  When all the hooks have finished it will then
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
   140
     * halt. Note that daemon threads will continue to run during the shutdown
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
   141
     * sequence, as will non-daemon threads if shutdown was initiated by
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
   142
     * invoking the {@link #exit exit} method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * <p> Once the shutdown sequence has begun it can be stopped only by
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   145
     * invoking the {@link #halt halt} method, which forcibly
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * terminates the virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * <p> Once the shutdown sequence has begun it is impossible to register a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * new shutdown hook or de-register a previously-registered hook.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Attempting either of these operations will cause an
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   151
     * {@link IllegalStateException} to be thrown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * <p> Shutdown hooks run at a delicate time in the life cycle of a virtual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * machine and should therefore be coded defensively.  They should, in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * particular, be written to be thread-safe and to avoid deadlocks insofar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * as possible.  They should also not rely blindly upon services that may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * have registered their own shutdown hooks and therefore may themselves in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * the process of shutting down.  Attempts to use other thread-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * services such as the AWT event-dispatch thread, for example, may lead to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * deadlocks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * <p> Shutdown hooks should also finish their work quickly.  When a
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   163
     * program invokes {@link #exit exit} the expectation is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * that the virtual machine will promptly shut down and exit.  When the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * virtual machine is terminated due to user logoff or system shutdown the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * underlying operating system may only allow a fixed amount of time in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * which to shut down and exit.  It is therefore inadvisable to attempt any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * user interaction or to perform a long-running computation in a shutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * hook.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * <p> Uncaught exceptions are handled in shutdown hooks just as in any
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   172
     * other thread, by invoking the
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   173
     * {@link ThreadGroup#uncaughtException uncaughtException} method of the
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   174
     * thread's {@link ThreadGroup} object. The default implementation of this
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   175
     * method prints the exception's stack trace to {@link System#err} and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * terminates the thread; it does not cause the virtual machine to exit or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * halt.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * <p> In rare circumstances the virtual machine may <i>abort</i>, that is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * stop running without shutting down cleanly.  This occurs when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * virtual machine is terminated externally, for example with the
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   182
     * {@code SIGKILL} signal on Unix or the {@code TerminateProcess} call on
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * Microsoft Windows.  The virtual machine may also abort if a native
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * method goes awry by, for example, corrupting internal data structures or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * attempting to access nonexistent memory.  If the virtual machine aborts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * then no guarantee can be made about whether or not any shutdown hooks
24367
705490680527 8030709: Tidy warnings cleanup for java.lang package; minor cleanup in java.math, javax.script
yan
parents: 18776
diff changeset
   187
     * will be run.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @param   hook
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   190
     *          An initialized but unstarted {@link Thread} object
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *          If the specified hook has already been registered,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *          or if it can be determined that the hook is already running or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     *          has already been run
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @throws  IllegalStateException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *          If the virtual machine is already in the process
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *          of shutting down
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     *          If a security manager is present and it denies
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   203
     *          {@link RuntimePermission}("shutdownHooks")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @see #removeShutdownHook
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @see #halt(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @see #exit(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    public void addShutdownHook(Thread hook) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            sm.checkPermission(new RuntimePermission("shutdownHooks"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        ApplicationShutdownHooks.add(hook);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    /**
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   219
     * De-registers a previously-registered virtual-machine shutdown hook.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * @param hook the hook to remove
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   222
     * @return {@code true} if the specified hook had previously been
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   223
     * registered and was successfully de-registered, {@code false}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * @throws  IllegalStateException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *          If the virtual machine is already in the process of shutting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *          down
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     *          If a security manager is present and it denies
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   232
     *          {@link RuntimePermission}("shutdownHooks")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * @see #addShutdownHook
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @see #exit(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public boolean removeShutdownHook(Thread hook) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            sm.checkPermission(new RuntimePermission("shutdownHooks"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        return ApplicationShutdownHooks.remove(hook);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * Forcibly terminates the currently running Java virtual machine.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * method never returns normally.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * <p> This method should be used with extreme caution.  Unlike the
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   251
     * {@link #exit exit} method, this method does not cause shutdown
48942
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
   252
     * hooks to be started.  If the shutdown sequence has already been
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
   253
     * initiated then this method does not wait for any running
a6c4b85163c1 8198249: Remove deprecated Runtime::runFinalizersOnExit and System::runFinalizersOnExit
mchung
parents: 48922
diff changeset
   254
     * shutdown hooks to finish their work.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * @param  status
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   257
     *         Termination status. By convention, a nonzero status code
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   258
     *         indicates abnormal termination. If the {@link Runtime#exit exit}
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   259
     *         (equivalently, {@link System#exit(int) System.exit}) method
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   260
     *         has already been invoked then this status code
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   261
     *         will override the status code passed to that method.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * @throws SecurityException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   264
     *         If a security manager is present and its
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   265
     *         {@link SecurityManager#checkExit checkExit} method
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   266
     *         does not permit an exit with the specified status
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * @see #exit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * @see #addShutdownHook
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * @see #removeShutdownHook
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    public void halt(int status) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
            sm.checkExit(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        }
49176
f413e471a6ab 8041626: Shutdown tracing event
rwestberg
parents: 48545
diff changeset
   278
        Shutdown.beforeHalt();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        Shutdown.halt(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * Executes the specified string command in a separate process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * <p>This is a convenience method.  An invocation of the form
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   286
     * {@code exec(command)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * behaves in exactly the same way as the invocation
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   288
     * {@link #exec(String, String[], File) exec}{@code (command, null, null)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @param   command   a specified system command.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * @return  A new {@link Process} object for managing the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     *          {@link SecurityManager#checkExec checkExec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     *          method doesn't allow creation of the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * @throws  NullPointerException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   303
     *          If {@code command} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @throws  IllegalArgumentException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   306
     *          If {@code command} is empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * @see     #exec(String[], String[], File)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @see     ProcessBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    public Process exec(String command) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        return exec(command, null, 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
     * Executes the specified string command in a separate process with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * specified environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * <p>This is a convenience method.  An invocation of the form
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   320
     * {@code exec(command, envp)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * behaves in exactly the same way as the invocation
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   322
     * {@link #exec(String, String[], File) exec}{@code (command, envp, null)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @param   command   a specified system command.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * @param   envp      array of strings, each element of which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     *                    has environment variable settings in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     *                    <i>name</i>=<i>value</i>, or
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   329
     *                    {@code null} if the subprocess should inherit
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *                    the environment of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @return  A new {@link Process} object for managing the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *          {@link SecurityManager#checkExec checkExec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *          method doesn't allow creation of the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * @throws  NullPointerException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   343
     *          If {@code command} is {@code null},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   344
     *          or one of the elements of {@code envp} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @throws  IllegalArgumentException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   347
     *          If {@code command} is empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @see     #exec(String[], String[], File)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @see     ProcessBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    public Process exec(String command, String[] envp) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        return exec(command, envp, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * Executes the specified string command in a separate process with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * specified environment and working directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * <p>This is a convenience method.  An invocation of the form
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   361
     * {@code exec(command, envp, dir)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * behaves in exactly the same way as the invocation
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   363
     * {@link #exec(String[], String[], File) exec}{@code (cmdarray, envp, dir)},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   364
     * where {@code cmdarray} is an array of all the tokens in
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   365
     * {@code command}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   367
     * <p>More precisely, the {@code command} string is broken
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * into tokens using a {@link StringTokenizer} created by the call
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   369
     * {@code new {@link StringTokenizer}(command)} with no
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * further modification of the character categories.  The tokens
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     * produced by the tokenizer are then placed in the new string
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   372
     * array {@code cmdarray}, in the same order.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * @param   command   a specified system command.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * @param   envp      array of strings, each element of which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *                    has environment variable settings in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     *                    <i>name</i>=<i>value</i>, or
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   379
     *                    {@code null} if the subprocess should inherit
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     *                    the environment of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @param   dir       the working directory of the subprocess, or
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   383
     *                    {@code null} if the subprocess should inherit
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     *                    the working directory of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * @return  A new {@link Process} object for managing the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *          {@link SecurityManager#checkExec checkExec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     *          method doesn't allow creation of the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @throws  NullPointerException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   397
     *          If {@code command} is {@code null},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   398
     *          or one of the elements of {@code envp} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @throws  IllegalArgumentException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   401
     *          If {@code command} is empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * @see     ProcessBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    public Process exec(String command, String[] envp, File dir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
        if (command.length() == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            throw new IllegalArgumentException("Empty command");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        StringTokenizer st = new StringTokenizer(command);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        String[] cmdarray = new String[st.countTokens()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        for (int i = 0; st.hasMoreTokens(); i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            cmdarray[i] = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        return exec(cmdarray, envp, dir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * Executes the specified command and arguments in a separate process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * <p>This is a convenience method.  An invocation of the form
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   422
     * {@code exec(cmdarray)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * behaves in exactly the same way as the invocation
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   424
     * {@link #exec(String[], String[], File) exec}{@code (cmdarray, null, null)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * @param   cmdarray  array containing the command to call and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     *                    its arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * @return  A new {@link Process} object for managing the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     *          {@link SecurityManager#checkExec checkExec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     *          method doesn't allow creation of the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * @throws  NullPointerException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   440
     *          If {@code cmdarray} is {@code null},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   441
     *          or one of the elements of {@code cmdarray} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * @throws  IndexOutOfBoundsException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   444
     *          If {@code cmdarray} is an empty array
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   445
     *          (has length {@code 0})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * @see     ProcessBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    public Process exec(String cmdarray[]) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        return exec(cmdarray, null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * Executes the specified command and arguments in a separate process
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * with the specified environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * <p>This is a convenience method.  An invocation of the form
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   458
     * {@code exec(cmdarray, envp)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * behaves in exactly the same way as the invocation
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   460
     * {@link #exec(String[], String[], File) exec}{@code (cmdarray, envp, null)}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * @param   cmdarray  array containing the command to call and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *                    its arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * @param   envp      array of strings, each element of which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     *                    has environment variable settings in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     *                    <i>name</i>=<i>value</i>, or
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   468
     *                    {@code null} if the subprocess should inherit
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     *                    the environment of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @return  A new {@link Process} object for managing the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     *          {@link SecurityManager#checkExec checkExec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     *          method doesn't allow creation of the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * @throws  NullPointerException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   482
     *          If {@code cmdarray} is {@code null},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   483
     *          or one of the elements of {@code cmdarray} is {@code null},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   484
     *          or one of the elements of {@code envp} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * @throws  IndexOutOfBoundsException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   487
     *          If {@code cmdarray} is an empty array
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   488
     *          (has length {@code 0})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * @see     ProcessBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public Process exec(String[] cmdarray, String[] envp) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        return exec(cmdarray, envp, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * Executes the specified command and arguments in a separate process with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * the specified environment and working directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     *
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   501
     * <p>Given an array of strings {@code cmdarray}, representing the
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   502
     * tokens of a command line, and an array of strings {@code envp},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * representing "environment" variable settings, this method creates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * a new process in which to execute the specified command.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     *
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   506
     * <p>This method checks that {@code cmdarray} is a valid operating
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * system command.  Which commands are valid is system-dependent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * but at the very least the command must be a non-empty list of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * non-null strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     *
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   511
     * <p>If {@code envp} is {@code null}, the subprocess inherits the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * environment settings of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     *
9500
268f823d9e1c 7034570: java.lang.Runtime.exec(String[] cmd, String[] env) can not work properly if SystemRoot not inherited
michaelm
parents: 5506
diff changeset
   514
     * <p>A minimal set of system dependent environment variables may
268f823d9e1c 7034570: java.lang.Runtime.exec(String[] cmd, String[] env) can not work properly if SystemRoot not inherited
michaelm
parents: 5506
diff changeset
   515
     * be required to start a process on some operating systems.
268f823d9e1c 7034570: java.lang.Runtime.exec(String[] cmd, String[] env) can not work properly if SystemRoot not inherited
michaelm
parents: 5506
diff changeset
   516
     * As a result, the subprocess may inherit additional environment variable
268f823d9e1c 7034570: java.lang.Runtime.exec(String[] cmd, String[] env) can not work properly if SystemRoot not inherited
michaelm
parents: 5506
diff changeset
   517
     * settings beyond those in the specified environment.
268f823d9e1c 7034570: java.lang.Runtime.exec(String[] cmd, String[] env) can not work properly if SystemRoot not inherited
michaelm
parents: 5506
diff changeset
   518
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * <p>{@link ProcessBuilder#start()} is now the preferred way to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * start a process with a modified environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     *
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   522
     * <p>The working directory of the new subprocess is specified by {@code dir}.
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   523
     * If {@code dir} is {@code null}, the subprocess inherits the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     * current working directory of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * <p>If a security manager exists, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * {@link SecurityManager#checkExec checkExec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * method is invoked with the first component of the array
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   529
     * {@code cmdarray} as its argument. This may result in a
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * {@link SecurityException} being thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * <p>Starting an operating system process is highly system-dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * Among the many things that can go wrong are:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * <li>The operating system program file was not found.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * <li>Access to the program file was denied.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * <li>The working directory does not exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * <p>In such cases an exception will be thrown.  The exact nature
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * of the exception is system-dependent, but it will always be a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * subclass of {@link IOException}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     *
28872
82a09f5a7ed6 8072034: (process) ProcessBuilder.start and Runtime.exec UnsupportedOperationException editorial cleanup
rriggs
parents: 28750
diff changeset
   544
     * <p>If the operating system does not support the creation of
82a09f5a7ed6 8072034: (process) ProcessBuilder.start and Runtime.exec UnsupportedOperationException editorial cleanup
rriggs
parents: 28750
diff changeset
   545
     * processes, an {@link UnsupportedOperationException} will be thrown.
82a09f5a7ed6 8072034: (process) ProcessBuilder.start and Runtime.exec UnsupportedOperationException editorial cleanup
rriggs
parents: 28750
diff changeset
   546
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * @param   cmdarray  array containing the command to call and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     *                    its arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * @param   envp      array of strings, each element of which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     *                    has environment variable settings in the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     *                    <i>name</i>=<i>value</i>, or
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   554
     *                    {@code null} if the subprocess should inherit
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     *                    the environment of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * @param   dir       the working directory of the subprocess, or
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   558
     *                    {@code null} if the subprocess should inherit
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     *                    the working directory of the current process.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @return  A new {@link Process} object for managing the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * @throws  SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     *          If a security manager exists and its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     *          {@link SecurityManager#checkExec checkExec}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     *          method doesn't allow creation of the subprocess
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     *
28750
a1dae439cdab 8055330: (process spec) ProcessBuilder.start and Runtime.exec should throw UnsupportedOperationException on platforms that don't support
rriggs
parents: 27184
diff changeset
   568
     * @throws  UnsupportedOperationException
a1dae439cdab 8055330: (process spec) ProcessBuilder.start and Runtime.exec should throw UnsupportedOperationException on platforms that don't support
rriggs
parents: 27184
diff changeset
   569
     *          If the operating system does not support the creation of processes.
a1dae439cdab 8055330: (process spec) ProcessBuilder.start and Runtime.exec should throw UnsupportedOperationException on platforms that don't support
rriggs
parents: 27184
diff changeset
   570
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * @throws  IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     *          If an I/O error occurs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * @throws  NullPointerException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   575
     *          If {@code cmdarray} is {@code null},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   576
     *          or one of the elements of {@code cmdarray} is {@code null},
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   577
     *          or one of the elements of {@code envp} is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * @throws  IndexOutOfBoundsException
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   580
     *          If {@code cmdarray} is an empty array
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   581
     *          (has length {@code 0})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * @see     ProcessBuilder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * @since 1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    public Process exec(String[] cmdarray, String[] envp, File dir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        return new ProcessBuilder(cmdarray)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
            .environment(envp)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            .directory(dir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
            .start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * Returns the number of processors available to the Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * <p> This value may change during a particular invocation of the virtual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * machine.  Applications that are sensitive to the number of available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * processors should therefore occasionally poll this property and adjust
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * their resource usage appropriately. </p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * @return  the maximum number of processors available to the virtual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     *          machine; never smaller than one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    public native int availableProcessors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * Returns the amount of free memory in the Java Virtual Machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * Calling the
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   611
     * {@code gc} method may result in increasing the value returned
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   612
     * by {@code freeMemory.}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * @return  an approximation to the total amount of memory currently
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     *          available for future allocated objects, measured in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    public native long freeMemory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * Returns the total amount of memory in the Java virtual machine.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * The value returned by this method may vary over time, depending on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * the host environment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * Note that the amount of memory required to hold an object of any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * given type may be implementation-dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * @return  the total amount of memory currently available for current
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     *          and future objects, measured in bytes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    public native long totalMemory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    /**
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   633
     * Returns the maximum amount of memory that the Java virtual machine
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   634
     * will attempt to use.  If there is no inherent limit then the value
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   635
     * {@link java.lang.Long#MAX_VALUE} will be returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     * @return  the maximum amount of memory that the virtual machine will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     *          attempt to use, measured in bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    public native long maxMemory();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * Runs the garbage collector.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * Calling this method suggests that the Java virtual machine expend
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * effort toward recycling unused objects in order to make the memory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * they currently occupy available for quick reuse. When control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * returns from the method call, the virtual machine has made
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * its best effort to recycle all discarded objects.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     * <p>
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   651
     * The name {@code gc} stands for "garbage
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * collector". The virtual machine performs this recycling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * process automatically as needed, in a separate thread, even if the
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   654
     * {@code gc} method is not invoked explicitly.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * The method {@link System#gc()} is the conventional and convenient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * means of invoking this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    public native void gc();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * Runs the finalization methods of any objects pending finalization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * Calling this method suggests that the Java virtual machine expend
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   664
     * effort toward running the {@code finalize} methods of objects
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   665
     * that have been found to be discarded but whose {@code finalize}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     * methods have not yet been run. When control returns from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * method call, the virtual machine has made a best effort to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * complete all outstanding finalizations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * The virtual machine performs the finalization process
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * automatically as needed, in a separate thread, if the
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   672
     * {@code runFinalization} method is not invoked explicitly.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * The method {@link System#runFinalization()} is the conventional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * and convenient means of invoking this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * @see     java.lang.Object#finalize()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    public void runFinalization() {
48922
906025796009 8198441: Replace native Runtime::runFinalization0 method with shared secrets
mchung
parents: 48545
diff changeset
   680
        SharedSecrets.getJavaLangRefAccess().runFinalization();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    /**
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   684
     * Not implemented, does nothing.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     *
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   686
     * @deprecated
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   687
     * This method was intended to control instruction tracing.
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   688
     * It has been superseded by JVM-specific tracing mechanisms.
40793
fb8850791384 8165636: add removal text to Runtime.traceInstructions/MethodCalls deprecation text
smarks
parents: 39889
diff changeset
   689
     * This method is subject to removal in a future version of Java SE.
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   690
     *
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   691
     * @param on ignored
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     */
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   693
    @Deprecated(since="9", forRemoval=true)
27184
2996674bd701 8057777: Cleanup of old and unused VM interfaces
fparain
parents: 25859
diff changeset
   694
    public void traceInstructions(boolean on) { }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
    /**
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   697
     * Not implemented, does nothing.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     *
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   699
     * @deprecated
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   700
     * This method was intended to control method call tracing.
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   701
     * It has been superseded by JVM-specific tracing mechanisms.
40793
fb8850791384 8165636: add removal text to Runtime.traceInstructions/MethodCalls deprecation text
smarks
parents: 39889
diff changeset
   702
     * This method is subject to removal in a future version of Java SE.
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   703
     *
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   704
     * @param on ignored
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     */
37606
e74fdd1e637f 8153330: deprecate Runtime.traceInstructions() and traceMethodCalls()
smarks
parents: 37521
diff changeset
   706
    @Deprecated(since="9", forRemoval=true)
27184
2996674bd701 8057777: Cleanup of old and unused VM interfaces
fparain
parents: 25859
diff changeset
   707
    public void traceMethodCalls(boolean on) { }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    /**
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   710
     * Loads the native library specified by the filename argument.  The filename
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   711
     * argument must be an absolute path name.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * (for example
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   713
     * {@code Runtime.getRuntime().load("/home/avh/lib/libX11.so");}).
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   714
     *
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   715
     * If the filename argument, when stripped of any platform-specific library
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   716
     * prefix, path, and file extension, indicates a library whose name is,
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   717
     * for example, L, and a native library called L is statically linked
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   718
     * with the VM, then the JNI_OnLoad_L function exported by the library
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   719
     * is invoked rather than attempting to load a dynamic library.
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   720
     * A filename matching the argument does not have to exist in the file
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   721
     * system.
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   722
     * See the <a href="{@docRoot}/../specs/jni/index.html"> JNI Specification</a>
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   723
     * for more details.
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   724
     *
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   725
     * Otherwise, the filename argument is mapped to a native library image in
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   726
     * an implementation-dependent manner.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * <p>
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   728
     * First, if there is a security manager, its {@code checkLink}
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   729
     * method is called with the {@code filename} as its argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * This may result in a security exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * This is similar to the method {@link #loadLibrary(String)}, but it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * accepts a general file name as an argument rather than just a library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * name, allowing any file of native code to be loaded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * The method {@link System#load(String)} is the conventional and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * convenient means of invoking this method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     * @param      filename   the file to load.
49203
3a225d9cabe1 8199420: Update javadoc tags in java.lang.System and related
rriggs
parents: 49186
diff changeset
   740
     * @throws     SecurityException  if a security manager exists and its
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   741
     *             {@code checkLink} method doesn't allow
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     *             loading of the specified dynamic library
49203
3a225d9cabe1 8199420: Update javadoc tags in java.lang.System and related
rriggs
parents: 49186
diff changeset
   743
     * @throws     UnsatisfiedLinkError  if either the filename is not an
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   744
     *             absolute path name, the native library is not statically
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   745
     *             linked with the VM, or the library cannot be mapped to
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   746
     *             a native library image by the host system.
49203
3a225d9cabe1 8199420: Update javadoc tags in java.lang.System and related
rriggs
parents: 49186
diff changeset
   747
     * @throws     NullPointerException if {@code filename} is
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   748
     *             {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * @see        java.lang.Runtime#getRuntime()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     * @see        java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * @see        java.lang.SecurityManager#checkLink(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
   753
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
    public void load(String filename) {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
   755
        load0(Reflection.getCallerClass(), filename);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9500
diff changeset
   758
    synchronized void load0(Class<?> fromClass, String filename) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
            security.checkLink(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        if (!(new File(filename).isAbsolute())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
            throw new UnsatisfiedLinkError(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                "Expecting an absolute path of the library: " + filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        ClassLoader.loadLibrary(fromClass, filename, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
    /**
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   771
     * Loads the native library specified by the {@code libname}
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   772
     * argument.  The {@code libname} argument must not contain any platform
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   773
     * specific prefix, file extension or path. If a native library
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   774
     * called {@code libname} is statically linked with the VM, then the
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   775
     * JNI_OnLoad_{@code libname} function exported by the library is invoked.
47707
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   776
     * See the <a href="{@docRoot}/../specs/jni/index.html"> JNI Specification</a>
67aa34b019e1 8164512: Replace ClassLoader use of finalizer with phantom reference to unload native library
mchung
parents: 47216
diff changeset
   777
     * for more details.
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   778
     *
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   779
     * Otherwise, the libname argument is loaded from a system library
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   780
     * location and mapped to a native library image in an implementation-
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   781
     * dependent manner.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     * <p>
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   783
     * First, if there is a security manager, its {@code checkLink}
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   784
     * method is called with the {@code libname} as its argument.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     * This may result in a security exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
     * The method {@link System#loadLibrary(String)} is the conventional
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * and convenient means of invoking this method. If native
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * methods are to be used in the implementation of a class, a standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     * strategy is to put the native code in a library file (call it
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   791
     * {@code LibFile}) and then to put a static initializer:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * static { System.loadLibrary("LibFile"); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * within the class declaration. When the class is loaded and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * initialized, the necessary native code implementation for the native
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     * methods will then be loaded as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * If this method is called more than once with the same library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     * name, the second and subsequent calls are ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * @param      libname   the name of the library.
49203
3a225d9cabe1 8199420: Update javadoc tags in java.lang.System and related
rriggs
parents: 49186
diff changeset
   803
     * @throws     SecurityException  if a security manager exists and its
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   804
     *             {@code checkLink} method doesn't allow
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     *             loading of the specified dynamic library
49203
3a225d9cabe1 8199420: Update javadoc tags in java.lang.System and related
rriggs
parents: 49186
diff changeset
   806
     * @throws     UnsatisfiedLinkError if either the libname argument
16479
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   807
     *             contains a file path, the native library is not statically
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   808
     *             linked with the VM,  or the library cannot be mapped to a
d845c18d13f2 8005716: Enhance JNI specification to allow support of static JNI libraries in Embedded JREs
alanb
parents: 14342
diff changeset
   809
     *             native library image by the host system.
49203
3a225d9cabe1 8199420: Update javadoc tags in java.lang.System and related
rriggs
parents: 49186
diff changeset
   810
     * @throws     NullPointerException if {@code libname} is
30042
4728ebcf8fd0 8076224: some tidy warnings from core libs
avstepan
parents: 28872
diff changeset
   811
     *             {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     * @see        java.lang.SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
     * @see        java.lang.SecurityManager#checkLink(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
   815
    @CallerSensitive
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    public void loadLibrary(String libname) {
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16479
diff changeset
   817
        loadLibrary0(Reflection.getCallerClass(), libname);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
11117
b6e68b1344d4 7116404: Miscellaneous warnings (java.rmi.**, serialization, some core classes)
alanb
parents: 9500
diff changeset
   820
    synchronized void loadLibrary0(Class<?> fromClass, String libname) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        SecurityManager security = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        if (security != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
            security.checkLink(libname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        if (libname.indexOf((int)File.separatorChar) != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            throw new UnsatisfiedLinkError(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    "Directory separator should not appear in library name: " + libname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        ClassLoader.loadLibrary(fromClass, libname, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    /**
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   833
     * Returns the version of the Java Runtime Environment as a {@link Version}.
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   834
     *
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   835
     * @return  the {@link Version} of the Java Runtime Environment
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   836
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   837
     * @since  9
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   838
     */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   839
    public static Version version() {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   840
        if (version == null) {
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
   841
            version = new Version(VersionProps.versionNumbers(),
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
   842
                    VersionProps.pre(), VersionProps.build(),
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
   843
                    VersionProps.optional());
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   844
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   845
        return version;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   846
    }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   847
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   848
    /**
39766
745f165bedee 8161236: Runtime.Version.{compareTo, equals}IgnoreOpt should be renamed
iris
parents: 39302
diff changeset
   849
     * A representation of a version string for an implementation of the
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   850
     * Java&nbsp;SE Platform.  A version string consists of a version number
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   851
     * optionally followed by pre-release and build information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   852
     *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 44785
diff changeset
   853
     * <h2><a id="verNum">Version numbers</a></h2>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   854
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   855
     * <p> A <em>version number</em>, {@code $VNUM}, is a non-empty sequence of
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   856
     * elements separated by period characters (U+002E).  An element is either
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   857
     * zero, or an unsigned integer numeral without leading zeros.  The final
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   858
     * element in a version number must not be zero.  When an element is
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   859
     * incremented, all subsequent elements are removed.  The format is: </p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   860
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   861
     * <blockquote><pre>
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   862
     * [1-9][0-9]*((\.0)*\.[1-9][0-9]*)*
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   863
     * </pre></blockquote>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   864
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   865
     * <p> The sequence may be of arbitrary length but the first four elements
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   866
     * are assigned specific meanings, as follows:</p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   867
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   868
     * <blockquote><pre>
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   869
     * $FEATURE.$INTERIM.$UPDATE.$PATCH
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   870
     * </pre></blockquote>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   871
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   872
     * <ul>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   873
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   874
     * <li><p> <a id="FEATURE">{@code $FEATURE}</a> &#x2014; The
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   875
     * feature-release counter, incremented for every feature release
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   876
     * regardless of release content.  Features may be added in a feature
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   877
     * release; they may also be removed, if advance notice was given at least
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   878
     * one feature release ahead of time.  Incompatible changes may be made
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   879
     * when justified. </p></li>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   880
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   881
     * <li><p> <a id="INTERIM">{@code $INTERIM}</a> &#x2014; The
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   882
     * interim-release counter, incremented for non-feature releases that
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   883
     * contain compatible bug fixes and enhancements but no incompatible
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   884
     * changes, no feature removals, and no changes to standard APIs.
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   885
     * </p></li>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   886
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   887
     * <li><p> <a id="UPDATE">{@code $UPDATE}</a> &#x2014; The update-release
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   888
     * counter, incremented for compatible update releases that fix security
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   889
     * issues, regressions, and bugs in newer features. </p></li>
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   890
     *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   891
     * <li><p> <a id="PATCH">{@code $PATCH}</a> &#x2014; The emergency
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   892
     * patch-release counter, incremented only when it's necessary to produce
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   893
     * an emergency release to fix a critical issue. </p></li>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   894
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   895
     * </ul>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   896
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   897
     * <p> The fifth and later elements of a version number are free for use by
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   898
     * platform implementors, to identify implementor-specific patch
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   899
     * releases. </p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   900
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   901
     * <p> A version number never has trailing zero elements.  If an element
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   902
     * and all those that follow it logically have the value zero then all of
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   903
     * them are omitted. </p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   904
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   905
     * <p> The sequence of numerals in a version number is compared to another
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   906
     * such sequence in numerical, pointwise fashion; <em>e.g.</em>, {@code
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   907
     * 10.0.4} is less than {@code 10.1.2}.  If one sequence is shorter than
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   908
     * another then the missing elements of the shorter sequence are considered
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   909
     * to be less than the corresponding elements of the longer sequence;
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   910
     * <em>e.g.</em>, {@code 10.0.2} is less than {@code 10.0.2.1}. </p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   911
     *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 44785
diff changeset
   912
     * <h2><a id="verStr">Version strings</a></h2>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   913
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   914
     * <p> A <em>version string</em>, {@code $VSTR}, is a version number {@code
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   915
     * $VNUM}, as described above, optionally followed by pre-release and build
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   916
     * information, in one of the following formats: </p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   917
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   918
     * <blockquote><pre>
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   919
     *     $VNUM(-$PRE)?\+$BUILD(-$OPT)?
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   920
     *     $VNUM-$PRE(-$OPT)?
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   921
     *     $VNUM(+-$OPT)?
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   922
     * </pre></blockquote>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   923
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   924
     * <p> where: </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   925
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   926
     * <ul>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   927
     *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 44785
diff changeset
   928
     * <li><p> <a id="pre">{@code $PRE}</a>, matching {@code ([a-zA-Z0-9]+)}
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   929
     * &#x2014; A pre-release identifier.  Typically {@code ea}, for a
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   930
     * potentially unstable early-access release under active development, or
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   931
     * {@code internal}, for an internal developer build. </p></li>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   932
     *
44844
b2b4d98404ba 8179364: update "<a name=" in java.base module to use id attribute
jjg
parents: 44785
diff changeset
   933
     * <li><p> <a id="build">{@code $BUILD}</a>, matching {@code
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   934
     * (0|[1-9][0-9]*)} &#x2014; The build number, incremented for each promoted
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   935
     * build.  {@code $BUILD} is reset to {@code 1} when any portion of {@code
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   936
     * $VNUM} is incremented. </p></li>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   937
     *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   938
     * <li><p> <a id="opt">{@code $OPT}</a>, matching {@code ([-a-zA-Z0-9.]+)}
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   939
     * &#x2014; Additional build information, if desired.  In the case of an
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   940
     * {@code internal} build this will often contain the date and time of the
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
   941
     * build. </p></li>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   942
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   943
     * </ul>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   944
     *
44265
ac63ae089927 8160956: Runtime.Version.compareTo/compareToIgnoreOpt problem
prappo
parents: 40793
diff changeset
   945
     * <p> A version string {@code 10-ea} matches {@code $VNUM = "10"} and
ac63ae089927 8160956: Runtime.Version.compareTo/compareToIgnoreOpt problem
prappo
parents: 40793
diff changeset
   946
     * {@code $PRE = "ea"}.  The version string {@code 10+-ea} matches
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   947
     * {@code $VNUM = "10"} and {@code $OPT = "ea"}. </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   948
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   949
     * <p> When comparing two version strings, the value of {@code $OPT}, if
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   950
     * present, may or may not be significant depending on the chosen
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   951
     * comparison method.  The comparison methods {@link #compareTo(Version)
39766
745f165bedee 8161236: Runtime.Version.{compareTo, equals}IgnoreOpt should be renamed
iris
parents: 39302
diff changeset
   952
     * compareTo()} and {@link #compareToIgnoreOptional(Version)
745f165bedee 8161236: Runtime.Version.{compareTo, equals}IgnoreOpt should be renamed
iris
parents: 39302
diff changeset
   953
     * compareToIgnoreOptional()} should be used consistently with the
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   954
     * corresponding methods {@link #equals(Object) equals()} and {@link
39766
745f165bedee 8161236: Runtime.Version.{compareTo, equals}IgnoreOpt should be renamed
iris
parents: 39302
diff changeset
   955
     * #equalsIgnoreOptional(Object) equalsIgnoreOptional()}.  </p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   956
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   957
     * <p> A <em>short version string</em>, {@code $SVSTR}, often useful in
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   958
     * less formal contexts, is a version number optionally followed by a
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   959
     * pre-release identifier:</p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   960
     *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   961
     * <blockquote><pre>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   962
     *     $VNUM(-$PRE)?
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   963
     * </pre></blockquote>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   964
     *
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   965
     * <p>This is a <a href="./doc-files/ValueBased.html">value-based</a>
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   966
     * class; use of identity-sensitive operations (including reference equality
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   967
     * ({@code ==}), identity hash code, or synchronization) on instances of
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   968
     * {@code Version} may have unpredictable results and should be avoided.
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   969
     * </p>
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   970
     *
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   971
     * @since  9
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   972
     */
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   973
    public static final class Version
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   974
        implements Comparable<Version>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   975
    {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   976
        private final List<Integer>     version;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   977
        private final Optional<String>  pre;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   978
        private final Optional<Integer> build;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   979
        private final Optional<String>  optional;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   980
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   981
        /*
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   982
         * List of version number components passed to this constructor MUST
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   983
         * be at least unmodifiable (ideally immutable). In the case on an
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   984
         * unmodifiable list, the caller MUST hand the list over to this
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   985
         * constructor and never change the underlying list.
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   986
         */
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   987
        private Version(List<Integer> unmodifiableListOfVersions,
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   988
                        Optional<String> pre,
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   989
                        Optional<Integer> build,
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   990
                        Optional<String> optional)
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   991
        {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
   992
            this.version = unmodifiableListOfVersions;
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
   993
            this.pre = pre;
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
   994
            this.build = build;
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
   995
            this.optional = optional;
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   996
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   997
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   998
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
   999
         * Parses the given string as a valid
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1000
         * <a href="#verStr">version string</a> containing a
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1001
         * <a href="#verNum">version number</a> followed by pre-release and
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1002
         * build information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1003
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1004
         * @param  s
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1005
         *         A string to interpret as a version
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1006
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1007
         * @throws  IllegalArgumentException
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1008
         *          If the given string cannot be interpreted as a valid
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1009
         *          version
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1010
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1011
         * @throws  NullPointerException
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1012
         *          If the given string is {@code null}
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1013
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1014
         * @throws  NumberFormatException
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1015
         *          If an element of the version number or the build number
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1016
         *          cannot be represented as an {@link Integer}
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1017
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1018
         * @return  The Version of the given string
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1019
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1020
        public static Version parse(String s) {
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1021
            if (s == null)
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1022
                throw new NullPointerException();
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1023
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1024
            // Shortcut to avoid initializing VersionPattern when creating
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1025
            // feature-version constants during startup
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1026
            if (isSimpleNumber(s)) {
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1027
                return new Version(List.of(Integer.parseInt(s)),
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1028
                        Optional.empty(), Optional.empty(), Optional.empty());
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1029
            }
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1030
            Matcher m = VersionPattern.VSTR_PATTERN.matcher(s);
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1031
            if (!m.matches())
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1032
                throw new IllegalArgumentException("Invalid version string: '"
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1033
                                                   + s + "'");
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1034
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1035
            // $VNUM is a dot-separated list of integers of arbitrary length
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1036
            String[] split = m.group(VersionPattern.VNUM_GROUP).split("\\.");
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1037
            Integer[] version = new Integer[split.length];
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1038
            for (int i = 0; i < split.length; i++) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1039
                version[i] = Integer.parseInt(split[i]);
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1040
            }
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1041
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1042
            Optional<String> pre = Optional.ofNullable(
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1043
                    m.group(VersionPattern.PRE_GROUP));
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1044
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1045
            String b = m.group(VersionPattern.BUILD_GROUP);
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1046
            // $BUILD is an integer
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1047
            Optional<Integer> build = (b == null)
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1048
                ? Optional.empty()
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1049
                : Optional.of(Integer.parseInt(b));
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1050
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1051
            Optional<String> optional = Optional.ofNullable(
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1052
                    m.group(VersionPattern.OPT_GROUP));
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1053
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1054
            // empty '+'
48545
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1055
            if (!build.isPresent()) {
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1056
                if (m.group(VersionPattern.PLUS_GROUP) != null) {
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1057
                    if (optional.isPresent()) {
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1058
                        if (pre.isPresent())
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1059
                            throw new IllegalArgumentException("'+' found with"
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1060
                                + " pre-release and optional components:'" + s
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1061
                                + "'");
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1062
                    } else {
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1063
                        throw new IllegalArgumentException("'+' found with neither"
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1064
                            + " build or optional components: '" + s + "'");
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1065
                    }
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1066
                } else {
48545
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1067
                    if (optional.isPresent() && !pre.isPresent()) {
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1068
                        throw new IllegalArgumentException("optional component"
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1069
                            + " must be preceeded by a pre-release component"
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1070
                            + " or '+': '" + s + "'");
fb978155215d 8194879: Runtime.Version parses string which does not conform to spec without throwing IAE
bchristi
parents: 48327
diff changeset
  1071
                    }
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1072
                }
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1073
            }
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1074
            return new Version(List.of(version), pre, build, optional);
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1075
        }
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1076
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1077
        private static boolean isSimpleNumber(String s) {
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1078
            for (int i = 0; i < s.length(); i++) {
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1079
                char c = s.charAt(i);
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1080
                char lowerBound = (i > 0) ? '0' : '1';
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1081
                if (c < lowerBound || c > '9') {
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1082
                    return false;
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1083
                }
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1084
            }
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1085
            return true;
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1086
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1087
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1088
        /**
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1089
         * Returns the value of the <a href="#FEATURE">feature</a> element of
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1090
         * the version number.
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1091
         *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1092
         * @return The value of the feature element
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1093
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1094
         * @since 10
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1095
         */
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1096
        public int feature() {
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1097
            return version.get(0);
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1098
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1099
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1100
        /**
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1101
         * Returns the value of the <a href="#INTERIM">interim</a> element of
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1102
         * the version number, or zero if it is absent.
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1103
         *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1104
         * @return The value of the interim element, or zero
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1105
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1106
         * @since 10
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1107
         */
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1108
        public int interim() {
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1109
            return (version.size() > 1 ? version.get(1) : 0);
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1110
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1111
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1112
        /**
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1113
         * Returns the value of the <a href="#UPDATE">update</a> element of the
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1114
         * version number, or zero if it is absent.
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1115
         *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1116
         * @return The value of the update element, or zero
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1117
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1118
         * @since 10
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1119
         */
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1120
        public int update() {
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1121
            return (version.size() > 2 ? version.get(2) : 0);
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1122
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1123
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1124
        /**
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1125
         * Returns the value of the <a href="#PATCH">patch</a> element of the
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1126
         * version number, or zero if it is absent.
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1127
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1128
         * @return The value of the patch element, or zero
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1129
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1130
         * @since 10
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1131
         */
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1132
        public int patch() {
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1133
            return (version.size() > 3 ? version.get(3) : 0);
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1134
        }
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1135
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1136
        /**
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1137
         * Returns the value of the major element of the version number.
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1138
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1139
         * @deprecated As of Java&nbsp;SE 10, the first element of a version
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1140
         * number is not the major-release number but the feature-release
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1141
         * counter, incremented for every time-based release.  Use the {@link
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1142
         * #feature()} method in preference to this method.  For compatibility,
49508
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 49203
diff changeset
  1143
         * this method returns the value of the <a href="#FEATURE">feature</a>
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1144
         * element.
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1145
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1146
         * @return The value of the feature element
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1147
         */
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1148
        @Deprecated(since = "10")
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1149
        public int major() {
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1150
            return feature();
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1151
        }
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1152
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1153
        /**
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1154
         * Returns the value of the minor element of the version number, or
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1155
         * zero if it is absent.
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1156
         *
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1157
         * @deprecated As of Java&nbsp;SE 10, the second element of a version
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1158
         * number is not the minor-release number but the interim-release
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1159
         * counter, incremented for every interim release.  Use the {@link
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1160
         * #interim()} method in preference to this method.  For compatibility,
49508
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 49203
diff changeset
  1161
         * this method returns the value of the <a href="#INTERIM">interim</a>
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1162
         * element, or zero if it is absent.
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1163
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1164
         * @return The value of the interim element, or zero
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1165
         */
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1166
        @Deprecated(since = "10")
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1167
        public int minor() {
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1168
            return interim();
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1169
        }
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1170
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1171
        /**
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1172
         * Returns the value of the security element of the version number, or
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1173
         * zero if it is absent.
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1174
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1175
         * @deprecated As of Java&nbsp;SE 10, the third element of a version
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1176
         * number is not the security level but the update-release counter,
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1177
         * incremented for every update release.  Use the {@link #update()}
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1178
         * method in preference to this method.  For compatibility, this method
49508
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 49203
diff changeset
  1179
         * returns the value of the <a href="#UPDATE">update</a> element, or
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1180
         * zero if it is absent.
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1181
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1182
         * @return  The value of the update element, or zero
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1183
         */
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1184
        @Deprecated(since = "10")
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1185
        public int security() {
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1186
            return update();
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1187
        }
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1188
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1189
        /**
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1190
         * Returns an unmodifiable {@link java.util.List List} of the integers
49508
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 49203
diff changeset
  1191
         * represented in the <a href="#verNum">version number</a>.
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 49203
diff changeset
  1192
         * The {@code List} always contains at least one element corresponding to
8f041818aca9 8199176: Accessibility issues in java.base docs
joehw
parents: 49203
diff changeset
  1193
         * the <a href="#FEATURE">feature version number</a>.
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1194
         *
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1195
         * @return  An unmodifiable list of the integers
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 48214
diff changeset
  1196
         *          represented in the version number
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1197
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1198
        public List<Integer> version() {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1199
            return version;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1200
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1201
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1202
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1203
         * Returns the optional <a href="#pre">pre-release</a> information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1204
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1205
         * @return  The optional pre-release information as a String
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1206
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1207
        public Optional<String> pre() {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1208
            return pre;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1209
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1210
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1211
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1212
         * Returns the <a href="#build">build number</a>.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1213
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1214
         * @return  The optional build number.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1215
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1216
        public Optional<Integer> build() {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1217
            return build;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1218
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1219
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1220
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1221
         * Returns <a href="#opt">optional</a> additional identifying build
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1222
         * information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1223
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1224
         * @return  Additional build information as a String
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1225
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1226
        public Optional<String> optional() {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1227
            return optional;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1228
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1229
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1230
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1231
         * Compares this version to another.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1232
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1233
         * <p> Each of the components in the <a href="#verStr">version</a> is
44265
ac63ae089927 8160956: Runtime.Version.compareTo/compareToIgnoreOpt problem
prappo
parents: 40793
diff changeset
  1234
         * compared in the following order of precedence: version numbers,
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1235
         * pre-release identifiers, build numbers, optional build information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1236
         * </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1237
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1238
         * <p> Comparison begins by examining the sequence of version numbers.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1239
         * If one sequence is shorter than another, then the missing elements
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1240
         * of the shorter sequence are considered to be less than the
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1241
         * corresponding elements of the longer sequence. </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1242
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1243
         * <p> A version with a pre-release identifier is always considered to
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1244
         * be less than a version without one.  Pre-release identifiers are
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1245
         * compared numerically when they consist only of digits, and
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1246
         * lexicographically otherwise.  Numeric identifiers are considered to
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1247
         * be less than non-numeric identifiers.  </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1248
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1249
         * <p> A version without a build number is always less than one with a
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1250
         * build number; otherwise build numbers are compared numerically. </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1251
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1252
         * <p> The optional build information is compared lexicographically.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1253
         * During this comparison, a version with optional build information is
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1254
         * considered to be greater than a version without one. </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1255
         *
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1256
         * @param  obj
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1257
         *         The object to be compared
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1258
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1259
         * @return  A negative integer, zero, or a positive integer if this
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1260
         *          {@code Version} is less than, equal to, or greater than the
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1261
         *          given {@code Version}
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1262
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1263
         * @throws  NullPointerException
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1264
         *          If the given object is {@code null}
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1265
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1266
        @Override
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1267
        public int compareTo(Version obj) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1268
            return compare(obj, false);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1269
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1270
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1271
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1272
         * Compares this version to another disregarding optional build
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1273
         * information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1274
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1275
         * <p> Two versions are compared by examining the version string as
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1276
         * described in {@link #compareTo(Version)} with the exception that the
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1277
         * optional build information is always ignored. </p>
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1278
         *
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1279
         * <p> This method provides ordering which is consistent with
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1280
         * {@code equalsIgnoreOptional()}. </p>
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1281
         *
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1282
         * @param  obj
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1283
         *         The object to be compared
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1284
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1285
         * @return  A negative integer, zero, or a positive integer if this
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1286
         *          {@code Version} is less than, equal to, or greater than the
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1287
         *          given {@code Version}
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1288
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1289
         * @throws  NullPointerException
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1290
         *          If the given object is {@code null}
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1291
         */
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1292
        public int compareToIgnoreOptional(Version obj) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1293
            return compare(obj, true);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1294
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1295
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1296
        private int compare(Version obj, boolean ignoreOpt) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1297
            if (obj == null)
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1298
                throw new NullPointerException();
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1299
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1300
            int ret = compareVersion(obj);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1301
            if (ret != 0)
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1302
                return ret;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1303
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1304
            ret = comparePre(obj);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1305
            if (ret != 0)
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1306
                return ret;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1307
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1308
            ret = compareBuild(obj);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1309
            if (ret != 0)
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1310
                return ret;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1311
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1312
            if (!ignoreOpt)
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1313
                return compareOptional(obj);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1314
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1315
            return 0;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1316
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1317
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1318
        private int compareVersion(Version obj) {
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1319
            int size = version.size();
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1320
            int oSize = obj.version().size();
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1321
            int min = Math.min(size, oSize);
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1322
            for (int i = 0; i < min; i++) {
44272
4d16899cb312 8176882: Incorrect integer comparison in version numbers
prappo
parents: 44265
diff changeset
  1323
                int val = version.get(i);
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1324
                int oVal = obj.version().get(i);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1325
                if (val != oVal)
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1326
                    return val - oVal;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1327
            }
44272
4d16899cb312 8176882: Incorrect integer comparison in version numbers
prappo
parents: 44265
diff changeset
  1328
            return size - oSize;
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1329
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1330
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1331
        private int comparePre(Version obj) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1332
            Optional<String> oPre = obj.pre();
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1333
            if (!pre.isPresent()) {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1334
                if (oPre.isPresent())
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1335
                    return 1;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1336
            } else {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1337
                if (!oPre.isPresent())
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1338
                    return -1;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1339
                String val = pre.get();
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1340
                String oVal = oPre.get();
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1341
                if (val.matches("\\d+")) {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1342
                    return (oVal.matches("\\d+")
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1343
                        ? (new BigInteger(val)).compareTo(new BigInteger(oVal))
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1344
                        : -1);
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1345
                } else {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1346
                    return (oVal.matches("\\d+")
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1347
                        ? 1
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1348
                        : val.compareTo(oVal));
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1349
                }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1350
            }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1351
            return 0;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1352
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1353
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1354
        private int compareBuild(Version obj) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1355
            Optional<Integer> oBuild = obj.build();
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1356
            if (oBuild.isPresent()) {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1357
                return (build.isPresent()
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1358
                        ? build.get().compareTo(oBuild.get())
44265
ac63ae089927 8160956: Runtime.Version.compareTo/compareToIgnoreOpt problem
prappo
parents: 40793
diff changeset
  1359
                        : -1);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1360
            } else if (build.isPresent()) {
44265
ac63ae089927 8160956: Runtime.Version.compareTo/compareToIgnoreOpt problem
prappo
parents: 40793
diff changeset
  1361
                return 1;
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1362
            }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1363
            return 0;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1364
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1365
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1366
        private int compareOptional(Version obj) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1367
            Optional<String> oOpt = obj.optional();
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1368
            if (!optional.isPresent()) {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1369
                if (oOpt.isPresent())
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1370
                    return -1;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1371
            } else {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1372
                if (!oOpt.isPresent())
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1373
                    return 1;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1374
                return optional.get().compareTo(oOpt.get());
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1375
            }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1376
            return 0;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1377
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1378
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1379
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1380
         * Returns a string representation of this version.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1381
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1382
         * @return  The version string
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1383
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1384
        @Override
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1385
        public String toString() {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1386
            StringBuilder sb
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1387
                = new StringBuilder(version.stream()
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1388
                    .map(Object::toString)
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1389
                    .collect(Collectors.joining(".")));
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1390
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1391
            pre.ifPresent(v -> sb.append("-").append(v));
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1392
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1393
            if (build.isPresent()) {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1394
                sb.append("+").append(build.get());
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1395
                if (optional.isPresent())
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1396
                    sb.append("-").append(optional.get());
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1397
            } else {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1398
                if (optional.isPresent()) {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1399
                    sb.append(pre.isPresent() ? "-" : "+-");
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1400
                    sb.append(optional.get());
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1401
                }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1402
            }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1403
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1404
            return sb.toString();
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1405
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1406
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1407
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1408
         * Determines whether this {@code Version} is equal to another object.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1409
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1410
         * <p> Two {@code Version}s are equal if and only if they represent the
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1411
         * same version string.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1412
         *
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1413
         * @param  obj
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1414
         *         The object to which this {@code Version} is to be compared
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1415
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1416
         * @return  {@code true} if, and only if, the given object is a {@code
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1417
         *          Version} that is identical to this {@code Version}
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1418
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1419
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1420
        @Override
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1421
        public boolean equals(Object obj) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1422
            boolean ret = equalsIgnoreOptional(obj);
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1423
            if (!ret)
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1424
                return false;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1425
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1426
            Version that = (Version)obj;
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1427
            return (this.optional().equals(that.optional()));
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1428
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1429
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1430
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1431
         * Determines whether this {@code Version} is equal to another
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1432
         * disregarding optional build information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1433
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1434
         * <p> Two {@code Version}s are equal if and only if they represent the
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1435
         * same version string disregarding the optional build information.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1436
         *
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1437
         * @param  obj
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1438
         *         The object to which this {@code Version} is to be compared
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1439
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1440
         * @return  {@code true} if, and only if, the given object is a {@code
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1441
         *          Version} that is identical to this {@code Version}
44265
ac63ae089927 8160956: Runtime.Version.compareTo/compareToIgnoreOpt problem
prappo
parents: 40793
diff changeset
  1442
         *          ignoring the optional build information
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1443
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1444
         */
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1445
        public boolean equalsIgnoreOptional(Object obj) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1446
            if (this == obj)
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1447
                return true;
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1448
            if (!(obj instanceof Version))
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1449
                return false;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1450
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1451
            Version that = (Version)obj;
38432
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1452
            return (this.version().equals(that.version())
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1453
                && this.pre().equals(that.pre())
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1454
                && this.build().equals(that.build()));
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1455
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1456
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1457
        /**
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1458
         * Returns the hash code of this version.
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1459
         *
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1460
         * @return  The hashcode of this version
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1461
         */
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1462
        @Override
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1463
        public int hashCode() {
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1464
            int h = 1;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1465
            int p = 17;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1466
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1467
            h = p * h + version.hashCode();
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1468
            h = p * h + pre.hashCode();
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1469
            h = p * h + build.hashCode();
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1470
            h = p * h + optional.hashCode();
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1471
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1472
            return h;
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1473
        }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1474
    }
892603099bb0 8144062: Move jdk.Version to java.lang.Runtime.Version
iris
parents: 37606
diff changeset
  1475
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1476
    private static class VersionPattern {
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1477
        // $VNUM(-$PRE)?(\+($BUILD)?(\-$OPT)?)?
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1478
        // RE limits the format of version strings
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1479
        // ([1-9][0-9]*(?:(?:\.0)*\.[1-9][0-9]*)*)(?:-([a-zA-Z0-9]+))?(?:(\+)(0|[1-9][0-9]*)?)?(?:-([-a-zA-Z0-9.]+))?
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1480
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1481
        private static final String VNUM
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1482
            = "(?<VNUM>[1-9][0-9]*(?:(?:\\.0)*\\.[1-9][0-9]*)*)";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1483
        private static final String PRE      = "(?:-(?<PRE>[a-zA-Z0-9]+))?";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1484
        private static final String BUILD
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1485
            = "(?:(?<PLUS>\\+)(?<BUILD>0|[1-9][0-9]*)?)?";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1486
        private static final String OPT      = "(?:-(?<OPT>[-a-zA-Z0-9.]+))?";
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 44272
diff changeset
  1487
        private static final String VSTR_FORMAT = VNUM + PRE + BUILD + OPT;
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1488
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1489
        static final Pattern VSTR_PATTERN = Pattern.compile(VSTR_FORMAT);
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1490
39889
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1491
        static final String VNUM_GROUP  = "VNUM";
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1492
        static final String PRE_GROUP   = "PRE";
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1493
        static final String PLUS_GROUP  = "PLUS";
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1494
        static final String BUILD_GROUP = "BUILD";
2e82e1c36e90 8162439: Runtime.Version.parse needs fast-path for major versions
redestad
parents: 39766
diff changeset
  1495
        static final String OPT_GROUP   = "OPT";
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 38432
diff changeset
  1496
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
}