src/java.base/share/classes/java/lang/VersionProps.java.template
author mr
Tue, 29 Oct 2019 08:26:55 -0700
changeset 58842 6c255334120d
parent 53018 8bf9268df0e2
permissions -rw-r--r--
8232080: jlink plugins for vendor information and run-time options Reviewed-by: ihse, alanb, kvn, bobv, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
     2
 * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 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;
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
    29
import java.util.Arrays;
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    30
import java.util.List;
52978
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
    31
import java.util.Map;
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    32
import java.util.Optional;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
36225
6ae0eebc46e9 8150162: Move sun.misc.Version to a truly internal package
chegar
parents: 34011
diff changeset
    34
class VersionProps {
2
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
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
    42
    private static final String java_version_date =
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
    43
        "@@VERSION_DATE@@";
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
    44
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    45
    // This field is read by HotSpot
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    private static final String java_runtime_name =
33984
2333676816eb 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 27565
diff changeset
    47
        "@@RUNTIME_NAME@@";
15683
3acd10709925 8003256: (profiles) Add support for profile identification
alanb
parents: 8993
diff changeset
    48
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    49
    // This field is read by HotSpot
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    private static final String java_runtime_version =
33984
2333676816eb 8085822: JEP 223: New Version-String Scheme (initial integration)
ihse
parents: 27565
diff changeset
    51
        "@@VERSION_STRING@@";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    53
    private static final String VERSION_NUMBER =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    54
        "@@VERSION_NUMBER@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    55
52824
52a692760109 8214794: java.specification.version should be only the major version number
rriggs
parents: 52724
diff changeset
    56
    private static final String VERSION_SPECIFICATION =
52a692760109 8214794: java.specification.version should be only the major version number
rriggs
parents: 52724
diff changeset
    57
        "@@VERSION_SPECIFICATION@@";
52a692760109 8214794: java.specification.version should be only the major version number
rriggs
parents: 52724
diff changeset
    58
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    59
    private static final String VERSION_BUILD =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    60
        "@@VERSION_BUILD@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    61
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    62
    private static final String VERSION_PRE =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    63
        "@@VERSION_PRE@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    64
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    65
    private static final String VERSION_OPT =
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    66
        "@@VERSION_OPT@@";
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
    67
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
    68
    private static final boolean isLTS =
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
    69
        "@@VERSION_OPT@@".startsWith("LTS");
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
    70
52724
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    71
    private static final String CLASSFILE_MAJOR_MINOR =
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    72
        "@@VERSION_CLASSFILE_MAJOR@@.@@VERSION_CLASSFILE_MINOR@@";
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    73
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    74
    private static final String VENDOR =
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    75
        "@@VENDOR@@";
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    76
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    77
    private static final String VENDOR_URL =
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    78
        "@@VENDOR_URL@@";
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    79
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    80
    // The remaining VENDOR_* fields must not be final,
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    81
    // so that they can be redefined by jlink plugins
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    82
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    83
    // This field is read by HotSpot
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    84
    private static String VENDOR_VERSION =
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    85
        "@@VENDOR_VERSION_STRING@@";
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    86
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    87
    private static String VENDOR_URL_BUG =
52724
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    88
        "@@VENDOR_URL_BUG@@";
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    89
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    90
    // This field is read by HotSpot
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    91
    private static String VENDOR_URL_VM_BUG =
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    92
        "@@VENDOR_URL_VM_BUG@@";
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
    93
52724
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    94
    /**
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    95
     * Initialize system properties using build provided values.
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    96
     *
52978
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
    97
     * @param props Map instance in which to insert the properties
52724
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
    98
     */
52978
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
    99
    public static void init(Map<String, String> props) {
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   100
        props.put("java.version", java_version);
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   101
        props.put("java.version.date", java_version_date);
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   102
        props.put("java.runtime.version", java_runtime_version);
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   103
        props.put("java.runtime.name", java_runtime_name);
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
   104
        if (!VENDOR_VERSION.isEmpty())
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
   105
            props.put("java.vendor.version", VENDOR_VERSION);
52724
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
   106
52978
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   107
        props.put("java.class.version", CLASSFILE_MAJOR_MINOR);
52724
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
   108
52978
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   109
        props.put("java.specification.version", VERSION_SPECIFICATION);
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   110
        props.put("java.specification.name", "Java Platform API Specification");
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   111
        props.put("java.specification.vendor", "Oracle Corporation");
52724
0bdbf854472f 4947890: Minimize JNI upcalls in system-properties initialization
rriggs
parents: 52478
diff changeset
   112
52978
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   113
        props.put("java.vendor", VENDOR);
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   114
        props.put("java.vendor.url", VENDOR_URL);
95efb32d390b 8215159: Improve initial setup of system Properties
redestad
parents: 52824
diff changeset
   115
        props.put("java.vendor.url.bug", VENDOR_URL_BUG);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   118
    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
   119
        if (index - prevIndex > 1 &&
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   120
            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
   121
            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
   122
                    version.substring(prevIndex, index) + ")");
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   123
        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
   124
    }
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   125
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   126
    // 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
   127
    static List<Integer> parseVersionNumbers(String version) {
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   128
        // Let's find the size of an array required to hold $VNUM components
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   129
        int size = 0;
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   130
        int prevIndex = 0;
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   131
        do {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   132
            prevIndex = version.indexOf('.', prevIndex) + 1;
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   133
            size++;
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   134
        } while (prevIndex > 0);
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   135
        Integer[] verNumbers = new Integer[size];
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   136
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   137
        // Fill in the array with $VNUM components
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   138
        int n = 0;
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   139
        prevIndex = 0;
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   140
        int index = version.indexOf('.');
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   141
        while (index > -1) {
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   142
            verNumbers[n] = parseVersionNumber(version, prevIndex, index);
39314
779f1d11a746 8160457: VersionProps.versionNumbers() is broken
simonis
parents: 39302
diff changeset
   143
            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
   144
            index = version.indexOf('.', prevIndex);
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   145
            n++;
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   146
        }
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   147
        verNumbers[n] = parseVersionNumber(version, prevIndex, version.length());
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   148
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   149
        if (verNumbers[0] == 0 || verNumbers[n] == 0)
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   150
            throw new IllegalArgumentException("Leading/trailing zeros not allowed (" +
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   151
                    Arrays.toString(verNumbers) + ")");
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   152
44785
62a18e20f5c1 8177738: Runtime.Version must be a value-based class
prappo
parents: 42338
diff changeset
   153
        return List.of(verNumbers);
39648
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   154
    }
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   155
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   156
    static List<Integer> versionNumbers() {
9bbd1300c256 8160564: TEST: Add a test to check the implementation of VersionProps.versionNumbers()
simonis
parents: 39314
diff changeset
   157
        return parseVersionNumbers(VERSION_NUMBER);
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   158
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   159
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   160
    static Optional<String> pre() {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   161
        return optionalOf(VERSION_PRE);
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   162
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   163
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   164
    static Optional<Integer> build() {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   165
        return VERSION_BUILD.isEmpty() ?
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   166
                Optional.empty() :
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   167
                Optional.of(Integer.parseInt(VERSION_BUILD));
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   168
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   169
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   170
    static Optional<String> optional() {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   171
        return optionalOf(VERSION_OPT);
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   172
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   173
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   174
    // Treat empty strings as value not being present
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   175
    private static Optional<String> optionalOf(String value) {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   176
        if (!value.isEmpty()) {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   177
            return Optional.of(value);
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   178
        } else {
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   179
            return Optional.empty();
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   180
        }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   181
    }
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   182
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * In case you were wondering this method is called by java -version.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     */
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   186
    public static void print(boolean err) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   187
        print(err, false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * This is the same as print except that it adds an extra line-feed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * at the end, typically used by the -showversion in the launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     */
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   194
    public static void println(boolean err) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   195
        print(err, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   199
     * Print version info.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     */
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   201
    private static void print(boolean err, boolean newln) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   202
        PrintStream ps = err ? System.err : System.out;
8993
9076d969ffdf 7025066: Build systems changes to support SE Embedded Integration
dholmes
parents: 5506
diff changeset
   203
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        /* First line: platform version. */
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   205
        if (err) {
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   206
            ps.println(launcher_name + " version \"" + java_version + "\""
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   207
                       + " " + java_version_date
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   208
                       + (isLTS ? " LTS" : ""));
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   209
        } else {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   210
            /* Use a format more in line with GNU conventions */
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   211
            ps.println(launcher_name + " " + java_version
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   212
                       + " " + java_version_date
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   213
                       + (isLTS ? " LTS" : ""));
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 40192
diff changeset
   214
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        /* Second line: runtime version (ie, libraries). */
34011
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   217
        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
   218
        if ("release".equals(jdk_debug_level)) {
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   219
           /* Do not show debug level "release" builds */
34011
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   220
            jdk_debug_level = "";
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   221
        } else {
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   222
            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
   223
        }
b1ce08dd7f17 8139986: Store debug level in java.vm.debug and conditionally print in "java -version"
amurillo
parents: 34003
diff changeset
   224
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
   225
        String vendor_version = (VENDOR_VERSION.isEmpty()
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
   226
                                 ? "" : " " + VENDOR_VERSION);
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 53018
diff changeset
   227
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   228
        ps.println(java_runtime_name + vendor_version
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   229
                   + " (" + jdk_debug_level + "build " + java_runtime_version + ")");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        /* Third line: JVM information. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        String java_vm_name    = System.getProperty("java.vm.name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        String java_vm_version = System.getProperty("java.vm.version");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        String java_vm_info    = System.getProperty("java.vm.info");
48327
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   235
        ps.println(java_vm_name + vendor_version
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   236
                   + " (" + jdk_debug_level + "build " + java_vm_version + ", "
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   237
                            + java_vm_info + ")");
d2a837cf9ff1 8192833: JEP 322: Time-Based Release Versioning
mr
parents: 47216
diff changeset
   238
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
39302
aa8d0bc2a6d2 8160000: Runtime.version() cause startup regressions in 9+119
redestad
parents: 36225
diff changeset
   241
}