jdk/src/java.base/share/classes/java/lang/VersionProps.java.template
author simonis
Thu, 14 Jul 2016 16:49:30 +0200
changeset 39648 9bbd1300c256
parent 39314 779f1d11a746
child 40192 64c0b3d47afb
permissions -rw-r--r--
8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers() Reviewed-by: mchung, redestad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
36225
6ae0eebc46e9 8150162: Move sun.misc.Version to a truly internal package
chegar
parents: 34011
diff changeset
     2
 * Copyright (c) 1999, 2016, 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: 4115
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: 4115
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: 4115
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4115
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4115
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
36225
6ae0eebc46e9 8150162: Move sun.misc.Version to a truly internal package
chegar
parents: 34011
diff changeset
    26
package java.lang;
6ae0eebc46e9 8150162: Move sun.misc.Version to a truly internal package
chegar
parents: 34011
diff changeset
    27
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.PrintStream;
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    29
import java.util.ArrayList;
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    30
import java.util.List;
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    31
import java.util.Optional;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
36225
6ae0eebc46e9 8150162: Move sun.misc.Version to a truly internal package
chegar
parents: 34011
diff changeset
    33
class VersionProps {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    private static final String launcher_name =
33984
2333676816eb 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 27565
diff changeset
    37
        "@@LAUNCHER_NAME@@";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private static final String java_version =
33984
2333676816eb 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 27565
diff changeset
    40
        "@@VERSION_SHORT@@";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private static final String java_runtime_name =
33984
2333676816eb 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 27565
diff changeset
    43
        "@@RUNTIME_NAME@@";
15683
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
    44
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    private static final String java_runtime_version =
33984
2333676816eb 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 27565
diff changeset
    46
        "@@VERSION_STRING@@";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    48
    private static final String VERSION_NUMBER =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    49
        "@@VERSION_NUMBER@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    50
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    51
    private static final String VERSION_BUILD =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    52
        "@@VERSION_BUILD@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    53
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    54
    private static final String VERSION_PRE =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    55
        "@@VERSION_PRE@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    56
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    57
    private static final String VERSION_OPT =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    58
        "@@VERSION_OPT@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    59
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    public static void init() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        System.setProperty("java.version", java_version);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        System.setProperty("java.runtime.version", java_runtime_version);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        System.setProperty("java.runtime.name", java_runtime_name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    70
    private static int parseVersionNumber(String version, int prevIndex, int index) {
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    71
        if (index - prevIndex > 1 &&
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    72
            Character.digit(version.charAt(prevIndex), 10) <= 0)
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    73
            throw new IllegalArgumentException("Leading zeros not supported (" +
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    74
                    version.substring(prevIndex, index) + ")");
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    75
        return Integer.parseInt(version, prevIndex, index, 10);
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    76
    }
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    77
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    78
    // This method is reflectively used by regression tests.
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    79
    static List<Integer> parseVersionNumbers(String version) {
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    80
        List<Integer> verNumbers = new ArrayList<>(4);
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    81
        int prevIndex = 0;
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    82
        int index = version.indexOf('.');
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    83
        while (index > 0) {
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    84
            verNumbers.add(parseVersionNumber(version, prevIndex, index));
39314
779f1d11a746 8160457: VersionProps.versionNumbers() is broken
simonis
parents: 39302
diff changeset
    85
            prevIndex = index + 1; // Skip the period
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    86
            index = version.indexOf('.', prevIndex);
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    87
        }
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    88
        verNumbers.add(parseVersionNumber(version, prevIndex, version.length()));
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    89
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    90
        if (verNumbers.get(0) == 0 || verNumbers.get(verNumbers.size() - 1) == 0)
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    91
            throw new IllegalArgumentException("Leading/trailing zeros not supported (" +
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    92
                    verNumbers + ")");
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    93
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    94
        return verNumbers;
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    95
    }
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    96
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    97
    static List<Integer> versionNumbers() {
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
    98
        return parseVersionNumbers(VERSION_NUMBER);
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    99
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   100
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   101
    static Optional<String> pre() {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   102
        return optionalOf(VERSION_PRE);
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   103
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   104
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   105
    static Optional<Integer> build() {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   106
        return VERSION_BUILD.isEmpty() ?
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   107
                Optional.empty() :
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   108
                Optional.of(Integer.parseInt(VERSION_BUILD));
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   109
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   110
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   111
    static Optional<String> optional() {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   112
        return optionalOf(VERSION_OPT);
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   113
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   114
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   115
    // Treat empty strings as value not being present
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   116
    private static Optional<String> optionalOf(String value) {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   117
        if (!value.isEmpty()) {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   118
            return Optional.of(value);
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   119
        } else {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   120
            return Optional.empty();
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   121
        }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   122
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   123
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * In case you were wondering this method is called by java -version.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Sad that it prints to stderr; would be nicer if default printed on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * stdout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    public static void print() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        print(System.err);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * This is the same as print except that it adds an extra line-feed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * at the end, typically used by the -showversion in the launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    public static void println() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        print(System.err);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        System.err.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * Give a stream, it will print version info on it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public static void print(PrintStream ps) {
8993
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   146
        boolean isHeadless = false;
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   147
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   148
        /* Report that we're running headless if the property is true */
15683
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   149
        String headless = System.getProperty("java.awt.headless");
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   150
        if ( (headless != null) && (headless.equalsIgnoreCase("true")) ) {
8993
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   151
            isHeadless = true;
15683
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   152
        }
8993
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   153
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        /* First line: platform version. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        ps.println(launcher_name + " version \"" + java_version + "\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        /* Second line: runtime version (ie, libraries). */
8993
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   158
34011
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   159
        String jdk_debug_level = System.getProperty("jdk.debug", "release");
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   160
        /* Debug level is not printed for "release" builds */
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   161
        if ("release".equals(jdk_debug_level)) {
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   162
            jdk_debug_level = "";
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   163
        } else {
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   164
            jdk_debug_level = jdk_debug_level + " ";
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   165
        }
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   166
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   167
        ps.print(java_runtime_name + " (" + jdk_debug_level + "build " + java_runtime_version);
8993
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   168
15683
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   169
        if (java_runtime_name.indexOf("Embedded") != -1 && isHeadless) {
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   170
            // embedded builds report headless state
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   171
            ps.print(", headless");
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   172
        }
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
   173
        ps.println(')');
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        /* Third line: JVM information. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        String java_vm_name    = System.getProperty("java.vm.name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        String java_vm_version = System.getProperty("java.vm.version");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        String java_vm_info    = System.getProperty("java.vm.info");
34011
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   179
        ps.println(java_vm_name + " (" + jdk_debug_level + "build " + java_vm_version + ", " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                   java_vm_info + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   183
}