src/java.base/share/classes/sun/launcher/LauncherHelper.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 58056 db92a157dd70
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
     1
/*
58056
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
     2
 * Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
     4
 *
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
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: 2168
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2168
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    10
 *
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    15
 * accompanied this code).
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    16
 *
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2168
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2168
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2168
diff changeset
    23
 * questions.
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    24
 */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    25
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    26
package sun.launcher;
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    27
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    28
/*
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    29
 *
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    30
 *  <p><b>This is NOT part of any API supported by Sun Microsystems.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    31
 *  If you write code that depends on this, you do so at your own
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    32
 *  risk.  This code and its internal interfaces are subject to change
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    33
 *  or deletion without notice.</b>
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    34
 *
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    35
 */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    36
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    37
/**
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    38
 * A utility package for the java(1), javaw(1) launchers.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    39
 * The following are helper methods that the native launcher uses
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    40
 * to perform checks etc. using JNI, see src/share/bin/java.c
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    41
 */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    42
import java.io.File;
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    43
import java.io.IOException;
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    44
import java.io.PrintStream;
8806
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
    45
import java.io.UnsupportedEncodingException;
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
    46
import java.lang.module.Configuration;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    47
import java.lang.module.ModuleDescriptor;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    48
import java.lang.module.ModuleDescriptor.Requires;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    49
import java.lang.module.ModuleDescriptor.Exports;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
    50
import java.lang.module.ModuleDescriptor.Opens;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    51
import java.lang.module.ModuleDescriptor.Provides;
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
    52
import java.lang.module.ModuleFinder;
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
    53
import java.lang.module.ModuleReference;
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
    54
import java.lang.module.ResolvedModule;
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
    55
import java.lang.reflect.InvocationTargetException;
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    56
import java.lang.reflect.Method;
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    57
import java.lang.reflect.Modifier;
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
    58
import java.math.BigDecimal;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
    59
import java.math.RoundingMode;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    60
import java.net.URI;
8806
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
    61
import java.nio.charset.Charset;
13411
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
    62
import java.nio.file.DirectoryStream;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
    63
import java.nio.file.Files;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
    64
import java.nio.file.Path;
58056
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
    65
import java.security.AccessControlException;
20179
fa41a3d5805e 8017248: Compiler Diacritics Issue
kizune
parents: 19409
diff changeset
    66
import java.text.Normalizer;
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    67
import java.text.MessageFormat;
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
    68
import java.util.ArrayList;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
    69
import java.util.Collections;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    70
import java.util.Comparator;
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
    71
import java.util.Iterator;
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
    72
import java.util.List;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
    73
import java.util.Locale;
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
    74
import java.util.Locale.Category;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
    75
import java.util.Optional;
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
    76
import java.util.Properties;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
    77
import java.util.ResourceBundle;
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
    78
import java.util.Set;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
    79
import java.util.TreeSet;
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    80
import java.util.jar.Attributes;
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    81
import java.util.jar.JarFile;
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    82
import java.util.jar.Manifest;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
    83
import java.util.stream.Collectors;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
    84
import java.util.stream.Stream;
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
    85
34882
ce2a8ec851c1 8145544: Move sun.misc.VM to jdk.internal.misc
chegar
parents: 32649
diff changeset
    86
import jdk.internal.misc.VM;
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
    87
import jdk.internal.module.ModuleBootstrap;
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
    88
import jdk.internal.module.Modules;
50545
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
    89
import jdk.internal.platform.Container;
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
    90
import jdk.internal.platform.Metrics;
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
    91
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
    92
37788
81ce381a91f6 8155939: sun.launcher.LauncherHelper INSTANCE is unused
redestad
parents: 36511
diff changeset
    93
public final class LauncherHelper {
81ce381a91f6 8155939: sun.launcher.LauncherHelper INSTANCE is unused
redestad
parents: 36511
diff changeset
    94
81ce381a91f6 8155939: sun.launcher.LauncherHelper INSTANCE is unused
redestad
parents: 36511
diff changeset
    95
    // No instantiation
81ce381a91f6 8155939: sun.launcher.LauncherHelper INSTANCE is unused
redestad
parents: 36511
diff changeset
    96
    private LauncherHelper() {}
24254
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
    97
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
    98
    // used to identify JavaFX applications
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
    99
    private static final String JAVAFX_APPLICATION_MARKER =
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   100
            "JavaFX-Application-Class";
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   101
    private static final String JAVAFX_APPLICATION_CLASS_NAME =
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   102
            "javafx.application.Application";
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   103
    private static final String JAVAFX_FXHELPER_CLASS_NAME_SUFFIX =
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   104
            "sun.launcher.LauncherHelper$FXHelper";
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   105
    private static final String LAUNCHER_AGENT_CLASS = "Launcher-Agent-Class";
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   106
    private static final String MAIN_CLASS = "Main-Class";
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   107
    private static final String ADD_EXPORTS = "Add-Exports";
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   108
    private static final String ADD_OPENS = "Add-Opens";
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 15003
diff changeset
   109
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   110
    private static StringBuilder outBuf = new StringBuilder();
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   111
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   112
    private static final String INDENT = "    ";
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   113
    private static final String VM_SETTINGS     = "VM settings:";
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   114
    private static final String PROP_SETTINGS   = "Property settings:";
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   115
    private static final String LOCALE_SETTINGS = "Locale settings:";
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   116
34882
ce2a8ec851c1 8145544: Move sun.misc.VM to jdk.internal.misc
chegar
parents: 32649
diff changeset
   117
    // sync with java.c and jdk.internal.misc.VM
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   118
    private static final String diagprop = "sun.java.launcher.diag";
34882
ce2a8ec851c1 8145544: Move sun.misc.VM to jdk.internal.misc
chegar
parents: 32649
diff changeset
   119
    static final boolean trace = VM.getSavedProperty(diagprop) != null;
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   120
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   121
    private static final String defaultBundleName =
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   122
            "sun.launcher.resources.launcher";
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   123
    private static class ResourceBundleHolder {
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   124
        private static final ResourceBundle RB =
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   125
                ResourceBundle.getBundle(defaultBundleName);
2168
de3c5a0416de 6801467: Defer get the launcher resource bundle until it's needed
mchung
parents: 1343
diff changeset
   126
    }
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   127
    private static PrintStream ostream;
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   128
    private static Class<?> appClass; // application class, for GUI/reporting purposes
2168
de3c5a0416de 6801467: Defer get the launcher resource bundle until it's needed
mchung
parents: 1343
diff changeset
   129
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   130
    /*
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   131
     * A method called by the launcher to print out the standard settings,
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   132
     * by default -XshowSettings is equivalent to -XshowSettings:all,
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   133
     * Specific information may be gotten by using suboptions with possible
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   134
     * values vm, properties and locale.
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   135
     *
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   136
     * printToStderr: choose between stdout and stderr
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   137
     *
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   138
     * optionFlag: specifies which options to print default is all other
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   139
     *    possible values are vm, properties, locale.
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   140
     *
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   141
     * initialHeapSize: in bytes, as set by the launcher, a zero-value indicates
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   142
     *    this code should determine this value, using a suitable method or
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   143
     *    the line could be omitted.
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   144
     *
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   145
     * maxHeapSize: in bytes, as set by the launcher, a zero-value indicates
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   146
     *    this code should determine this value, using a suitable method.
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   147
     *
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   148
     * stackSize: in bytes, as set by the launcher, a zero-value indicates
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   149
     *    this code determine this value, using a suitable method or omit the
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   150
     *    line entirely.
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   151
     */
50545
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   152
    @SuppressWarnings("fallthrough")
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   153
    static void showSettings(boolean printToStderr, String optionFlag,
41966
bac52fa6e617 8169001: Remove launcher's built-in ergonomics
ksrini
parents: 40261
diff changeset
   154
            long initialHeapSize, long maxHeapSize, long stackSize) {
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   155
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   156
        initOutput(printToStderr);
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   157
        String opts[] = optionFlag.split(":");
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   158
        String optStr = (opts.length > 1 && opts[1] != null)
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   159
                ? opts[1].trim()
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   160
                : "all";
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   161
        switch (optStr) {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   162
            case "vm":
41966
bac52fa6e617 8169001: Remove launcher's built-in ergonomics
ksrini
parents: 40261
diff changeset
   163
                printVmSettings(initialHeapSize, maxHeapSize, stackSize);
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   164
                break;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   165
            case "properties":
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   166
                printProperties();
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   167
                break;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   168
            case "locale":
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   169
                printLocale();
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   170
                break;
50545
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   171
            case "system":
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   172
                if (System.getProperty("os.name").contains("Linux")) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   173
                    printSystemMetrics();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   174
                    break;
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   175
                }
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   176
            default:
41966
bac52fa6e617 8169001: Remove launcher's built-in ergonomics
ksrini
parents: 40261
diff changeset
   177
                printVmSettings(initialHeapSize, maxHeapSize, stackSize);
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   178
                printProperties();
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   179
                printLocale();
50545
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   180
                if (System.getProperty("os.name").contains("Linux")) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   181
                    printSystemMetrics();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   182
                }
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   183
                break;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   184
        }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   185
    }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   186
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   187
    /*
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   188
     * prints the main vm settings subopt/section
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   189
     */
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   190
    private static void printVmSettings(
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   191
            long initialHeapSize, long maxHeapSize,
41966
bac52fa6e617 8169001: Remove launcher's built-in ergonomics
ksrini
parents: 40261
diff changeset
   192
            long stackSize) {
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   193
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   194
        ostream.println(VM_SETTINGS);
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   195
        if (stackSize != 0L) {
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   196
            ostream.println(INDENT + "Stack Size: " +
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   197
                    SizePrefix.scaleValue(stackSize));
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   198
        }
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   199
        if (initialHeapSize != 0L) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   200
             ostream.println(INDENT + "Min. Heap Size: " +
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   201
                    SizePrefix.scaleValue(initialHeapSize));
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   202
        }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   203
        if (maxHeapSize != 0L) {
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   204
            ostream.println(INDENT + "Max. Heap Size: " +
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   205
                    SizePrefix.scaleValue(maxHeapSize));
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   206
        } else {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   207
            ostream.println(INDENT + "Max. Heap Size (Estimated): "
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   208
                    + SizePrefix.scaleValue(Runtime.getRuntime().maxMemory()));
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   209
        }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   210
        ostream.println(INDENT + "Using VM: "
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   211
                + System.getProperty("java.vm.name"));
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   212
        ostream.println();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   213
    }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   214
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   215
    /*
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   216
     * prints the properties subopt/section
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   217
     */
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   218
    private static void printProperties() {
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   219
        Properties p = System.getProperties();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   220
        ostream.println(PROP_SETTINGS);
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   221
        List<String> sortedPropertyKeys = new ArrayList<>();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   222
        sortedPropertyKeys.addAll(p.stringPropertyNames());
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   223
        Collections.sort(sortedPropertyKeys);
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   224
        for (String x : sortedPropertyKeys) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   225
            printPropertyValue(x, p.getProperty(x));
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   226
        }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   227
        ostream.println();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   228
    }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   229
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   230
    private static boolean isPath(String key) {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   231
        return key.endsWith(".dirs") || key.endsWith(".path");
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   232
    }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   233
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   234
    private static void printPropertyValue(String key, String value) {
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   235
        ostream.print(INDENT + key + " = ");
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   236
        if (key.equals("line.separator")) {
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   237
            for (byte b : value.getBytes()) {
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   238
                switch (b) {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   239
                    case 0xd:
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   240
                        ostream.print("\\r ");
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   241
                        break;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   242
                    case 0xa:
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   243
                        ostream.print("\\n ");
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   244
                        break;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   245
                    default:
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   246
                        // print any bizzare line separators in hex, but really
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   247
                        // shouldn't happen.
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   248
                        ostream.printf("0x%02X", b & 0xff);
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   249
                        break;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   250
                }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   251
            }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   252
            ostream.println();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   253
            return;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   254
        }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   255
        if (!isPath(key)) {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   256
            ostream.println(value);
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   257
            return;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   258
        }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   259
        String[] values = value.split(System.getProperty("path.separator"));
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   260
        boolean first = true;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   261
        for (String s : values) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   262
            if (first) { // first line treated specially
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   263
                ostream.println(s);
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   264
                first = false;
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   265
            } else { // following lines prefix with indents
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   266
                ostream.println(INDENT + INDENT + s);
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   267
            }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   268
        }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   269
    }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   270
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   271
    /*
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   272
     * prints the locale subopt/section
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   273
     */
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   274
    private static void printLocale() {
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   275
        Locale locale = Locale.getDefault();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   276
        ostream.println(LOCALE_SETTINGS);
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   277
        ostream.println(INDENT + "default locale = " +
48251
57148c79bd75 8176841: Additional Unicode Language-Tag Extensions
naoto
parents: 47216
diff changeset
   278
                locale.getDisplayName());
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   279
        ostream.println(INDENT + "default display locale = " +
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   280
                Locale.getDefault(Category.DISPLAY).getDisplayName());
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   281
        ostream.println(INDENT + "default format locale = " +
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   282
                Locale.getDefault(Category.FORMAT).getDisplayName());
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   283
        printLocales();
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   284
        ostream.println();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   285
    }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   286
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   287
    private static void printLocales() {
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   288
        Locale[] tlocales = Locale.getAvailableLocales();
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   289
        final int len = tlocales == null ? 0 : tlocales.length;
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   290
        if (len < 1 ) {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   291
            return;
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   292
        }
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   293
        // Locale does not implement Comparable so we convert it to String
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   294
        // and sort it for pretty printing.
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   295
        Set<String> sortedSet = new TreeSet<>();
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   296
        for (Locale l : tlocales) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   297
            sortedSet.add(l.toString());
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   298
        }
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   299
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   300
        ostream.print(INDENT + "available locales = ");
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   301
        Iterator<String> iter = sortedSet.iterator();
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   302
        final int last = len - 1;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   303
        for (int i = 0 ; iter.hasNext() ; i++) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   304
            String s = iter.next();
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   305
            ostream.print(s);
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   306
            if (i != last) {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   307
                ostream.print(", ");
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   308
            }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   309
            // print columns of 8
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   310
            if ((i + 1) % 8 == 0) {
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   311
                ostream.println();
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   312
                ostream.print(INDENT + INDENT);
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   313
            }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   314
        }
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   315
    }
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   316
50545
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   317
    public static void printSystemMetrics() {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   318
        Metrics c = Container.metrics();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   319
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   320
        ostream.println("Operating System Metrics:");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   321
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   322
        if (c == null) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   323
            ostream.println(INDENT + "No metrics available for this platform");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   324
            return;
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   325
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   326
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   327
        ostream.println(INDENT + "Provider: " + c.getProvider());
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   328
        ostream.println(INDENT + "Effective CPU Count: " + c.getEffectiveCpuCount());
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   329
        ostream.println(INDENT + "CPU Period: " + c.getCpuPeriod() +
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   330
               (c.getCpuPeriod() == -1 ? "" : "us"));
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   331
        ostream.println(INDENT + "CPU Quota: " + c.getCpuQuota() +
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   332
               (c.getCpuQuota() == -1 ? "" : "us"));
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   333
        ostream.println(INDENT + "CPU Shares: " + c.getCpuShares());
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   334
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   335
        int cpus[] = c.getCpuSetCpus();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   336
        ostream.println(INDENT + "List of Processors, "
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   337
                + cpus.length + " total: ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   338
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   339
        ostream.print(INDENT);
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   340
        for (int i = 0; i < cpus.length; i++) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   341
            ostream.print(cpus[i] + " ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   342
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   343
        if (cpus.length > 0) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   344
            ostream.println("");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   345
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   346
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   347
        cpus = c.getEffectiveCpuSetCpus();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   348
        ostream.println(INDENT + "List of Effective Processors, "
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   349
                + cpus.length + " total: ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   350
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   351
        ostream.print(INDENT);
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   352
        for (int i = 0; i < cpus.length; i++) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   353
            ostream.print(cpus[i] + " ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   354
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   355
        if (cpus.length > 0) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   356
            ostream.println("");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   357
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   358
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   359
        int mems[] = c.getCpuSetMems();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   360
        ostream.println(INDENT + "List of Memory Nodes, "
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   361
                + mems.length + " total: ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   362
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   363
        ostream.print(INDENT);
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   364
        for (int i = 0; i < mems.length; i++) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   365
            ostream.print(mems[i] + " ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   366
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   367
        if (mems.length > 0) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   368
            ostream.println("");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   369
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   370
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   371
        mems = c.getEffectiveCpuSetMems();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   372
        ostream.println(INDENT + "List of Available Memory Nodes, "
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   373
                + mems.length + " total: ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   374
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   375
        ostream.print(INDENT);
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   376
        for (int i = 0; i < mems.length; i++) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   377
            ostream.print(mems[i] + " ");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   378
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   379
        if (mems.length > 0) {
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   380
            ostream.println("");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   381
        }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   382
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   383
        ostream.println(INDENT + "CPUSet Memory Pressure Enabled: "
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   384
                + c.isCpuSetMemoryPressureEnabled());
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   385
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   386
        long limit = c.getMemoryLimit();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   387
        ostream.println(INDENT + "Memory Limit: " +
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   388
                ((limit >= 0) ? SizePrefix.scaleValue(limit) : "Unlimited"));
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   389
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   390
        limit = c.getMemorySoftLimit();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   391
        ostream.println(INDENT + "Memory Soft Limit: " +
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   392
                ((limit >= 0) ? SizePrefix.scaleValue(limit) : "Unlimited"));
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   393
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   394
        limit = c.getMemoryAndSwapLimit();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   395
        ostream.println(INDENT + "Memory & Swap Limit: " +
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   396
                ((limit >= 0) ? SizePrefix.scaleValue(limit) : "Unlimited"));
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   397
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   398
        limit = c.getKernelMemoryLimit();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   399
        ostream.println(INDENT + "Kernel Memory Limit: " +
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   400
                ((limit >= 0) ? SizePrefix.scaleValue(limit) : "Unlimited"));
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   401
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   402
        limit = c.getTcpMemoryLimit();
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   403
        ostream.println(INDENT + "TCP Memory Limit: " +
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   404
                ((limit >= 0) ? SizePrefix.scaleValue(limit) : "Unlimited"));
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   405
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   406
        ostream.println(INDENT + "Out Of Memory Killer Enabled: "
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   407
                + c.isMemoryOOMKillEnabled());
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   408
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   409
        ostream.println("");
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   410
    }
292a4a87c321 8203357: Container Metrics
bobv
parents: 48251
diff changeset
   411
7810
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   412
    private enum SizePrefix {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   413
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   414
        KILO(1024, "K"),
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   415
        MEGA(1024 * 1024, "M"),
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   416
        GIGA(1024 * 1024 * 1024, "G"),
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   417
        TERA(1024L * 1024L * 1024L * 1024L, "T");
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   418
        long size;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   419
        String abbrev;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   420
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   421
        SizePrefix(long size, String abbrev) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   422
            this.size = size;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   423
            this.abbrev = abbrev;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   424
        }
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   425
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   426
        private static String scale(long v, SizePrefix prefix) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   427
            return BigDecimal.valueOf(v).divide(BigDecimal.valueOf(prefix.size),
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   428
                    2, RoundingMode.HALF_EVEN).toPlainString() + prefix.abbrev;
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   429
        }
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   430
        /*
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   431
         * scale the incoming values to a human readable form, represented as
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   432
         * K, M, G and T, see java.c parse_size for the scaled values and
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   433
         * suffixes. The lowest possible scaled value is Kilo.
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   434
         */
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   435
        static String scaleValue(long v) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   436
            if (v < MEGA.size) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   437
                return scale(v, KILO);
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   438
            } else if (v < GIGA.size) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   439
                return scale(v, MEGA);
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   440
            } else if (v < TERA.size) {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   441
                return scale(v, GIGA);
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   442
            } else {
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   443
                return scale(v, TERA);
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   444
            }
d4730191e53c 7002386: (launcher) fix XshowSettings
ksrini
parents: 7297
diff changeset
   445
        }
7297
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   446
    }
906c58a8b849 6452854: Provide a flag to print the java configuration
ksrini
parents: 5982
diff changeset
   447
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   448
    /**
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   449
     * A private helper method to get a localized message and also
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   450
     * apply any arguments that we might pass.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   451
     */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   452
    private static String getLocalizedMessage(String key, Object... args) {
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   453
        String msg = ResourceBundleHolder.RB.getString(key);
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   454
        return (args != null) ? MessageFormat.format(msg, args) : msg;
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   455
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   456
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   457
    /**
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   458
     * The java -help message is split into 3 parts, an invariant, followed
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   459
     * by a set of platform dependent variant messages, finally an invariant
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   460
     * set of lines.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   461
     * This method initializes the help message for the first time, and also
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   462
     * assembles the invariant header part of the message.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   463
     */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   464
    static void initHelpMessage(String progname) {
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   465
        outBuf = outBuf.append(getLocalizedMessage("java.launcher.opt.header",
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   466
                (progname == null) ? "java" : progname ));
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   467
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   468
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   469
    /**
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   470
     * Appends the vm selection messages to the header, already created.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   471
     * initHelpSystem must already be called.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   472
     */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   473
    static void appendVmSelectMessage(String vm1, String vm2) {
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   474
        outBuf = outBuf.append(getLocalizedMessage("java.launcher.opt.vmselect",
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   475
                vm1, vm2));
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   476
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   477
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   478
    /**
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   479
     * Appends the vm synoym message to the header, already created.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   480
     * initHelpSystem must be called before using this method.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   481
     */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   482
    static void appendVmSynonymMessage(String vm1, String vm2) {
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   483
        outBuf = outBuf.append(getLocalizedMessage("java.launcher.opt.hotspot",
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   484
                vm1, vm2));
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   485
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   486
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   487
    /**
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   488
     * Appends the last invariant part to the previously created messages,
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   489
     * and finishes up the printing to the desired output stream.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   490
     * initHelpSystem must be called before using this method.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   491
     */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   492
    static void printHelpMessage(boolean printToStderr) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   493
        initOutput(printToStderr);
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   494
        outBuf = outBuf.append(getLocalizedMessage("java.launcher.opt.footer",
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   495
                File.pathSeparator));
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   496
        ostream.println(outBuf.toString());
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   497
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   498
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   499
    /**
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   500
     * Prints the Xusage text to the desired output stream.
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   501
     */
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   502
    static void printXUsageMessage(boolean printToStderr) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   503
        initOutput(printToStderr);
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   504
        ostream.println(getLocalizedMessage("java.launcher.X.usage",
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   505
                File.pathSeparator));
12538
211d6e82fe51 7130404: [macosx] "os.arch" value should be "x86_64" for compatibility with Apple JDK6
jmelvin
parents: 12047
diff changeset
   506
        if (System.getProperty("os.name").contains("OS X")) {
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11125
diff changeset
   507
            ostream.println(getLocalizedMessage("java.launcher.X.macosx.usage",
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11125
diff changeset
   508
                        File.pathSeparator));
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11125
diff changeset
   509
        }
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   510
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   511
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   512
    static void initOutput(boolean printToStderr) {
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   513
        ostream =  (printToStderr) ? System.err : System.out;
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   514
    }
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   515
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   516
    static void initOutput(PrintStream ps) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   517
        ostream = ps;
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   518
    }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   519
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   520
    static String getMainClassFromJar(String jarname) {
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   521
        String mainValue;
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   522
        try (JarFile jarFile = new JarFile(jarname)) {
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   523
            Manifest manifest = jarFile.getManifest();
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   524
            if (manifest == null) {
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   525
                abort(null, "java.launcher.jar.error2", jarname);
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   526
            }
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   527
            Attributes mainAttrs = manifest.getMainAttributes();
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   528
            if (mainAttrs == null) {
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   529
                abort(null, "java.launcher.jar.error3", jarname);
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   530
            }
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   531
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   532
            // Main-Class
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   533
            mainValue = mainAttrs.getValue(MAIN_CLASS);
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   534
            if (mainValue == null) {
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   535
                abort(null, "java.launcher.jar.error3", jarname);
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   536
            }
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 15003
diff changeset
   537
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   538
            // Launcher-Agent-Class (only check for this when Main-Class present)
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   539
            String agentClass = mainAttrs.getValue(LAUNCHER_AGENT_CLASS);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   540
            if (agentClass != null) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   541
                ModuleLayer.boot().findModule("java.instrument").ifPresent(m -> {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   542
                    try {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   543
                        String cn = "sun.instrument.InstrumentationImpl";
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   544
                        Class<?> clazz = Class.forName(cn, false, null);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   545
                        Method loadAgent = clazz.getMethod("loadAgent", String.class);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   546
                        loadAgent.invoke(null, jarname);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   547
                    } catch (Throwable e) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   548
                        if (e instanceof InvocationTargetException) e = e.getCause();
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   549
                        abort(e, "java.launcher.jar.error4", jarname);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   550
                    }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   551
                });
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   552
            }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
   553
44364
9cc9dc782213 8177474: Do not emit warnings when illegal access is allowed by --add-exports/--add-opens
alanb
parents: 44359
diff changeset
   554
            // Add-Exports and Add-Opens
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   555
            String exports = mainAttrs.getValue(ADD_EXPORTS);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   556
            if (exports != null) {
44364
9cc9dc782213 8177474: Do not emit warnings when illegal access is allowed by --add-exports/--add-opens
alanb
parents: 44359
diff changeset
   557
                addExportsOrOpens(exports, false);
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   558
            }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   559
            String opens = mainAttrs.getValue(ADD_OPENS);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   560
            if (opens != null) {
44364
9cc9dc782213 8177474: Do not emit warnings when illegal access is allowed by --add-exports/--add-opens
alanb
parents: 44359
diff changeset
   561
                addExportsOrOpens(opens, true);
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   562
            }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   563
15682
793a36de151d 8003255: (profiles) Update JAR file specification to support profiles
alanb
parents: 15003
diff changeset
   564
            /*
15687
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   565
             * Hand off to FXHelper if it detects a JavaFX application
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   566
             * This must be done after ensuring a Main-Class entry
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   567
             * exists to enforce compliance with the jar specification
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   568
             */
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   569
            if (mainAttrs.containsKey(
24254
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   570
                    new Attributes.Name(JAVAFX_APPLICATION_MARKER))) {
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   571
                FXHelper.setFXLaunchParameters(jarname, LM_JAR);
15687
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   572
                return FXHelper.class.getName();
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   573
            }
9f473a0b9e86 8006667: Merge issue: Profile attribute need to be examined before custom attributes
dholmes
parents: 15682
diff changeset
   574
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   575
            return mainValue.trim();
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   576
        } catch (IOException ioe) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   577
            abort(ioe, "java.launcher.jar.error1", jarname);
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   578
        }
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   579
        return null;
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   580
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   581
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   582
    /**
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   583
     * Process the Add-Exports or Add-Opens value. The value is
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   584
     * {@code <module>/<package> ( <module>/<package>)*}.
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   585
     */
44364
9cc9dc782213 8177474: Do not emit warnings when illegal access is allowed by --add-exports/--add-opens
alanb
parents: 44359
diff changeset
   586
    static void addExportsOrOpens(String value, boolean open) {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   587
        for (String moduleAndPackage : value.split(" ")) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   588
            String[] s = moduleAndPackage.trim().split("/");
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   589
            if (s.length == 2) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   590
                String mn = s[0];
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   591
                String pn = s[1];
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45339
diff changeset
   592
                ModuleLayer.boot()
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45339
diff changeset
   593
                    .findModule(mn)
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45339
diff changeset
   594
                    .filter(m -> m.getDescriptor().packages().contains(pn))
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45339
diff changeset
   595
                    .ifPresent(m -> {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   596
                        if (open) {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   597
                            Modules.addOpensToAllUnnamed(m, pn);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   598
                        } else {
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   599
                            Modules.addExportsToAllUnnamed(m, pn);
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   600
                        }
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45339
diff changeset
   601
                    });
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   602
            }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   603
        }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   604
    }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
   605
7997
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   606
    // From src/share/bin/java.c:
50453
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   607
    //   enum LaunchMode { LM_UNKNOWN = 0, LM_CLASS, LM_JAR, LM_MODULE, LM_SOURCE }
7997
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   608
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   609
    private static final int LM_UNKNOWN = 0;
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   610
    private static final int LM_CLASS   = 1;
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   611
    private static final int LM_JAR     = 2;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   612
    private static final int LM_MODULE  = 3;
50453
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   613
    private static final int LM_SOURCE  = 4;
7997
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   614
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   615
    static void abort(Throwable t, String msgKey, Object... args) {
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   616
        if (msgKey != null) {
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   617
            ostream.println(getLocalizedMessage(msgKey, args));
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   618
        }
13411
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   619
        if (trace) {
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   620
            if (t != null) {
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   621
                t.printStackTrace();
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   622
            } else {
11125
99b115114fa3 7117357: Warnings in sun.instrument, tools and other sun.* classes
alanb
parents: 10126
diff changeset
   623
                Thread.dumpStack();
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   624
            }
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   625
        }
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   626
        System.exit(1);
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   627
    }
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   628
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   629
    /**
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   630
     * This method:
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   631
     * 1. Loads the main class from the module or class path
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   632
     * 2. Checks the public static void main method.
42178
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   633
     * 3. If the main class extends FX Application then call on FXHelper to
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   634
     * perform the launch.
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   635
     *
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   636
     * @param printToStderr if set, all output will be routed to stderr
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   637
     * @param mode LaunchMode as determined by the arguments passed on the
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   638
     *             command line
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   639
     * @param what the module name[/class], JAR file, or the main class
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   640
     *             depending on the mode
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   641
     *
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   642
     * @return the application's main class
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   643
     */
50453
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   644
    @SuppressWarnings("fallthrough")
7997
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   645
    public static Class<?> checkAndLoadMain(boolean printToStderr,
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   646
                                            int mode,
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   647
                                            String what) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   648
        initOutput(printToStderr);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   649
50453
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   650
        Class<?> mainClass = null;
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   651
        switch (mode) {
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   652
            case LM_MODULE: case LM_SOURCE:
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   653
                mainClass = loadModuleMainClass(what);
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   654
                break;
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   655
            default:
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   656
                mainClass = loadMainClass(mode, what);
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   657
                break;
f91927a2c8d3 8201274: Launch Single-File Source-Code Programs
jjg
parents: 48251
diff changeset
   658
        }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   659
42178
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   660
        // record the real main class for UI purposes
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   661
        // neither method above can return null, they will abort()
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   662
        appClass = mainClass;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   663
42178
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   664
        /*
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   665
         * Check if FXHelper can launch it using the FX launcher. In an FX app,
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   666
         * the main class may or may not have a main method, so do this before
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   667
         * validating the main class.
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   668
         */
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   669
        if (JAVAFX_FXHELPER_CLASS_NAME_SUFFIX.equals(mainClass.getName()) ||
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   670
            doesExtendFXApplication(mainClass)) {
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   671
            // Will abort() if there are problems with FX runtime
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   672
            FXHelper.setFXLaunchParameters(what, mode);
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   673
            mainClass = FXHelper.class;
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   674
        }
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   675
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   676
        validateMainClass(mainClass);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   677
        return mainClass;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   678
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   679
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   680
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   681
     * Returns the main class for a module. The query is either a module name
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   682
     * or module-name/main-class. For the former then the module's main class
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   683
     * is obtained from the module descriptor (MainClass attribute).
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   684
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   685
    private static Class<?> loadModuleMainClass(String what) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   686
        int i = what.indexOf('/');
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   687
        String mainModule;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   688
        String mainClass;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   689
        if (i == -1) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   690
            mainModule = what;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   691
            mainClass = null;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   692
        } else {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   693
            mainModule = what.substring(0, i);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   694
            mainClass = what.substring(i+1);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   695
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   696
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   697
        // main module is in the boot layer
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
   698
        ModuleLayer layer = ModuleLayer.boot();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   699
        Optional<Module> om = layer.findModule(mainModule);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   700
        if (!om.isPresent()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   701
            // should not happen
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   702
            throw new InternalError("Module " + mainModule + " not in boot Layer");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   703
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   704
        Module m = om.get();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   705
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   706
        // get main class
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   707
        if (mainClass == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   708
            Optional<String> omc = m.getDescriptor().mainClass();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   709
            if (!omc.isPresent()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   710
                abort(null, "java.launcher.module.error1", mainModule);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   711
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   712
            mainClass = omc.get();
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   713
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   714
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   715
        // load the class from the module
43496
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   716
        Class<?> c = null;
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   717
        try {
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   718
            c = Class.forName(m, mainClass);
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   719
            if (c == null && System.getProperty("os.name", "").contains("OS X")
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   720
                    && Normalizer.isNormalized(mainClass, Normalizer.Form.NFD)) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   721
43496
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   722
                String cn = Normalizer.normalize(mainClass, Normalizer.Form.NFC);
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   723
                c = Class.forName(m, cn);
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   724
            }
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   725
        } catch (LinkageError le) {
43689
8ccdae71dba3 8173943: Change error reporting of LauncherHelper to include actual Error class name
rpatil
parents: 43496
diff changeset
   726
            abort(null, "java.launcher.module.error3", mainClass, m.getName(),
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45339
diff changeset
   727
                    le.getClass().getName() + ": " + le.getLocalizedMessage());
58056
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
   728
        } catch (AccessControlException ace) {
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
   729
            abort(ace, "java.launcher.module.error5", mainClass, m.getName(),
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
   730
                    ace.getClass().getName(), ace.getLocalizedMessage());
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   731
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   732
        if (c == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   733
            abort(null, "java.launcher.module.error2", mainClass, mainModule);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   734
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   735
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   736
        System.setProperty("jdk.module.main.class", c.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   737
        return c;
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   738
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   739
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   740
    /**
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   741
     * Loads the main class from the class path (LM_CLASS or LM_JAR).
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   742
     */
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   743
    private static Class<?> loadMainClass(int mode, String what) {
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   744
        // get the class name
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   745
        String cn;
7997
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   746
        switch (mode) {
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   747
            case LM_CLASS:
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   748
                cn = what;
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   749
                break;
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   750
            case LM_JAR:
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   751
                cn = getMainClassFromJar(what);
8174
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   752
                break;
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   753
            default:
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   754
                // should never happen
89e3a22d4cd7 6968053: (launcher) hide exceptions under certain launcher failures
ksrini
parents: 7997
diff changeset
   755
                throw new InternalError("" + mode + ": Unknown launch mode");
7997
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   756
        }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   757
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   758
        // load the main class
7997
78536cac0841 6912013: Remove the temporary launcher fix to add modules in the bootclasspath
mchung
parents: 7810
diff changeset
   759
        cn = cn.replace('/', '.');
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   760
        Class<?> mainClass = null;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   761
        ClassLoader scl = ClassLoader.getSystemClassLoader();
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   762
        try {
43496
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   763
            try {
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   764
                mainClass = Class.forName(cn, false, scl);
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   765
            } catch (NoClassDefFoundError | ClassNotFoundException cnfe) {
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   766
                if (System.getProperty("os.name", "").contains("OS X")
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   767
                        && Normalizer.isNormalized(cn, Normalizer.Form.NFD)) {
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   768
                    try {
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   769
                        // On Mac OS X since all names with diacritical marks are
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   770
                        // given as decomposed it is possible that main class name
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   771
                        // comes incorrectly from the command line and we have
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   772
                        // to re-compose it
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   773
                        String ncn = Normalizer.normalize(cn, Normalizer.Form.NFC);
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   774
                        mainClass = Class.forName(ncn, false, scl);
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   775
                    } catch (NoClassDefFoundError | ClassNotFoundException cnfe1) {
43809
c3669a70a7ab 8174694: improve error message shown when main class can't be loaded
vromero
parents: 43713
diff changeset
   776
                        abort(cnfe1, "java.launcher.cls.error1", cn,
c3669a70a7ab 8174694: improve error message shown when main class can't be loaded
vromero
parents: 43713
diff changeset
   777
                                cnfe1.getClass().getCanonicalName(), cnfe1.getMessage());
43496
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   778
                    }
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   779
                } else {
43809
c3669a70a7ab 8174694: improve error message shown when main class can't be loaded
vromero
parents: 43713
diff changeset
   780
                    abort(cnfe, "java.launcher.cls.error1", cn,
c3669a70a7ab 8174694: improve error message shown when main class can't be loaded
vromero
parents: 43713
diff changeset
   781
                            cnfe.getClass().getCanonicalName(), cnfe.getMessage());
20179
fa41a3d5805e 8017248: Compiler Diacritics Issue
kizune
parents: 19409
diff changeset
   782
                }
fa41a3d5805e 8017248: Compiler Diacritics Issue
kizune
parents: 19409
diff changeset
   783
            }
43496
fbafb9f36e96 8167063: spurious message "A JNI error has occurred" if start-class cannot be initialized
rpatil
parents: 42339
diff changeset
   784
        } catch (LinkageError le) {
43689
8ccdae71dba3 8173943: Change error reporting of LauncherHelper to include actual Error class name
rpatil
parents: 43496
diff changeset
   785
            abort(le, "java.launcher.cls.error6", cn,
8ccdae71dba3 8173943: Change error reporting of LauncherHelper to include actual Error class name
rpatil
parents: 43496
diff changeset
   786
                    le.getClass().getName() + ": " + le.getLocalizedMessage());
58056
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
   787
        } catch (AccessControlException ace) {
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
   788
            abort(ace, "java.launcher.cls.error7", cn,
db92a157dd70 8212117: Class.forName may return a reference to a loaded but not linked Class
bchristi
parents: 55233
diff changeset
   789
                    ace.getClass().getName(), ace.getLocalizedMessage());
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   790
        }
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   791
        return mainClass;
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   792
    }
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   793
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   794
    /*
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   795
     * Accessor method called by the launcher after getting the main class via
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   796
     * checkAndLoadMain(). The "application class" is the class that is finally
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   797
     * executed to start the application and in this case is used to report
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   798
     * the correct application name, typically for UI purposes.
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   799
     */
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   800
    public static Class<?> getApplicationClass() {
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   801
        return appClass;
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   802
    }
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   803
24254
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   804
    /*
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   805
     * Check if the given class is a JavaFX Application class. This is done
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   806
     * in a way that does not cause the Application class to load or throw
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   807
     * ClassNotFoundException if the JavaFX runtime is not available.
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   808
     */
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   809
    private static boolean doesExtendFXApplication(Class<?> mainClass) {
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   810
        for (Class<?> sc = mainClass.getSuperclass(); sc != null;
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   811
                sc = sc.getSuperclass()) {
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   812
            if (sc.getName().equals(JAVAFX_APPLICATION_CLASS_NAME)) {
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   813
                return true;
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   814
            }
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   815
        }
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   816
        return false;
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   817
    }
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   818
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   819
    // Check the existence and signature of main and abort if incorrect
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   820
    static void validateMainClass(Class<?> mainClass) {
45339
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   821
        Method mainMethod = null;
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   822
        try {
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   823
            mainMethod = mainClass.getMethod("main", String[].class);
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   824
        } catch (NoSuchMethodException nsme) {
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   825
            // invalid main or not FX application, abort with an error
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   826
            abort(null, "java.launcher.cls.error4", mainClass.getName(),
24254
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   827
                  JAVAFX_APPLICATION_CLASS_NAME);
45339
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   828
        } catch (Throwable e) {
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   829
            if (mainClass.getModule().isNamed()) {
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   830
                abort(e, "java.launcher.module.error5",
55233
6c2d69a41ff9 8221368: Error message when module main class cannot be loaded is missing exception details
mchung
parents: 50700
diff changeset
   831
                      mainClass.getName(), mainClass.getModule().getName(),
45339
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   832
                      e.getClass().getName(), e.getLocalizedMessage());
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   833
            } else {
45652
33342314ce89 8181087: Module system implementation refresh (6/2017)
alanb
parents: 45339
diff changeset
   834
                abort(e, "java.launcher.cls.error7", mainClass.getName(),
45339
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   835
                      e.getClass().getName(), e.getLocalizedMessage());
f2ab1225d11f 8181033: Confusing message: A JNI error has occurred, please check your installation and try again
mchung
parents: 45004
diff changeset
   836
            }
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   837
        }
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   838
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   839
        /*
1329
ce13b59a8401 4459600: java -jar fails to run Main-Class if classname followed by whitespace.
ksrini
parents: 1323
diff changeset
   840
         * getMethod (above) will choose the correct method, based
ce13b59a8401 4459600: java -jar fails to run Main-Class if classname followed by whitespace.
ksrini
parents: 1323
diff changeset
   841
         * on its name and parameter type, however, we still have to
ce13b59a8401 4459600: java -jar fails to run Main-Class if classname followed by whitespace.
ksrini
parents: 1323
diff changeset
   842
         * ensure that the method is static and returns a void.
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   843
         */
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   844
        int mod = mainMethod.getModifiers();
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   845
        if (!Modifier.isStatic(mod)) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   846
            abort(null, "java.launcher.cls.error2", "static",
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   847
                  mainMethod.getDeclaringClass().getName());
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   848
        }
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   849
        if (mainMethod.getReturnType() != java.lang.Void.TYPE) {
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   850
            abort(null, "java.launcher.cls.error3",
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   851
                  mainMethod.getDeclaringClass().getName());
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   852
        }
8806
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   853
    }
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   854
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   855
    private static final String encprop = "sun.jnu.encoding";
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   856
    private static String encoding = null;
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   857
    private static boolean isCharsetSupported = false;
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   858
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   859
    /*
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   860
     * converts a c or a byte array to a platform specific string,
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   861
     * previously implemented as a native method in the launcher.
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   862
     */
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   863
    static String makePlatformString(boolean printToStderr, byte[] inArray) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   864
        initOutput(printToStderr);
8806
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   865
        if (encoding == null) {
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   866
            encoding = System.getProperty(encprop);
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   867
            isCharsetSupported = Charset.isSupported(encoding);
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   868
        }
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   869
        try {
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   870
            String out = isCharsetSupported
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   871
                    ? new String(inArray, encoding)
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   872
                    : new String(inArray);
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   873
            return out;
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   874
        } catch (UnsupportedEncodingException uee) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   875
            abort(uee, null);
8806
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   876
        }
c81d4e10ffb7 7026184: (launcher) Regression: class with unicode name can't be launched by java.
ksrini
parents: 8174
diff changeset
   877
        return null; // keep the compiler happy
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
   878
    }
13411
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   879
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   880
    static String[] expandArgs(String[] argArray) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   881
        List<StdArg> aList = new ArrayList<>();
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   882
        for (String x : argArray) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   883
            aList.add(new StdArg(x));
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   884
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   885
        return expandArgs(aList);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   886
    }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   887
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   888
    static String[] expandArgs(List<StdArg> argList) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   889
        ArrayList<String> out = new ArrayList<>();
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   890
        if (trace) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   891
            System.err.println("Incoming arguments:");
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   892
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   893
        for (StdArg a : argList) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   894
            if (trace) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   895
                System.err.println(a);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   896
            }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   897
            if (a.needsExpansion) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   898
                File x = new File(a.arg);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   899
                File parent = x.getParentFile();
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   900
                String glob = x.getName();
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   901
                if (parent == null) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   902
                    parent = new File(".");
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   903
                }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   904
                try (DirectoryStream<Path> dstream =
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   905
                        Files.newDirectoryStream(parent.toPath(), glob)) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   906
                    int entries = 0;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   907
                    for (Path p : dstream) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   908
                        out.add(p.normalize().toString());
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   909
                        entries++;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   910
                    }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   911
                    if (entries == 0) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   912
                        out.add(a.arg);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   913
                    }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   914
                } catch (Exception e) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   915
                    out.add(a.arg);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   916
                    if (trace) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   917
                        System.err.println("Warning: passing argument as-is " + a);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   918
                        System.err.print(e);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   919
                    }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   920
                }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   921
            } else {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   922
                out.add(a.arg);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   923
            }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   924
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   925
        String[] oarray = new String[out.size()];
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   926
        out.toArray(oarray);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   927
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   928
        if (trace) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   929
            System.err.println("Expanded arguments:");
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   930
            for (String x : oarray) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   931
                System.err.println(x);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   932
            }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   933
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   934
        return oarray;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   935
    }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   936
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   937
    /* duplicate of the native StdArg struct */
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   938
    private static class StdArg {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   939
        final String arg;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   940
        final boolean needsExpansion;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   941
        StdArg(String arg, boolean expand) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   942
            this.arg = arg;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   943
            this.needsExpansion = expand;
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   944
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   945
        // protocol: first char indicates whether expansion is required
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   946
        // 'T' = true ; needs expansion
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   947
        // 'F' = false; needs no expansion
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   948
        StdArg(String in) {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   949
            this.arg = in.substring(1);
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   950
            needsExpansion = in.charAt(0) == 'T';
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   951
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   952
        public String toString() {
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   953
            return "StdArg{" + "arg=" + arg + ", needsExpansion=" + needsExpansion + '}';
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   954
        }
224a28370893 7146424: Wildcard expansion for single entry classpath
ksrini
parents: 12538
diff changeset
   955
    }
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   956
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   957
    static final class FXHelper {
24254
2da866863b98 8035782: sun/launcher/LauncherHelper$FXHelper loaded unnecessarily
ksrini
parents: 20179
diff changeset
   958
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   959
        private static final String JAVAFX_GRAPHICS_MODULE_NAME =
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   960
                "javafx.graphics";
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
   961
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   962
        private static final String JAVAFX_LAUNCHER_CLASS_NAME =
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   963
                "com.sun.javafx.application.LauncherImpl";
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   964
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   965
        /*
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   966
         * The launch method used to invoke the JavaFX launcher. These must
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   967
         * match the strings used in the launchApplication method.
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   968
         *
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   969
         * Command line                 JavaFX-App-Class  Launch mode  FX Launch mode
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   970
         * java -cp fxapp.jar FXClass   N/A               LM_CLASS     "LM_CLASS"
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   971
         * java -cp somedir FXClass     N/A               LM_CLASS     "LM_CLASS"
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   972
         * java -jar fxapp.jar          Present           LM_JAR       "LM_JAR"
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   973
         * java -jar fxapp.jar          Not Present       LM_JAR       "LM_JAR"
42178
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   974
         * java -m module/class [1]     N/A               LM_MODULE    "LM_MODULE"
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   975
         * java -m module               N/A               LM_MODULE    "LM_MODULE"
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   976
         *
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   977
         * [1] - JavaFX-Application-Class is ignored when modular args are used, even
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   978
         * if present in a modular jar
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   979
         */
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   980
        private static final String JAVAFX_LAUNCH_MODE_CLASS = "LM_CLASS";
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   981
        private static final String JAVAFX_LAUNCH_MODE_JAR = "LM_JAR";
42178
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
   982
        private static final String JAVAFX_LAUNCH_MODE_MODULE = "LM_MODULE";
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   983
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   984
        /*
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   985
         * FX application launcher and launch method, so we can launch
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   986
         * applications with no main method.
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   987
         */
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   988
        private static String fxLaunchName = null;
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   989
        private static String fxLaunchMode = null;
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   990
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   991
        private static Class<?> fxLauncherClass    = null;
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   992
        private static Method   fxLauncherMethod   = null;
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   993
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   994
        /*
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   995
         * Set the launch params according to what was passed to LauncherHelper
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   996
         * so we can use the same launch mode for FX. Abort if there is any
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   997
         * issue with loading the FX runtime or with the launcher method.
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
   998
         */
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
   999
        private static void setFXLaunchParameters(String what, int mode) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1000
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1001
            // find the module with the FX launcher
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1002
            Optional<Module> om = ModuleLayer.boot().findModule(JAVAFX_GRAPHICS_MODULE_NAME);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1003
            if (!om.isPresent()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1004
                abort(null, "java.launcher.cls.error5");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1005
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1006
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1007
            // load the FX launcher class
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1008
            fxLauncherClass = Class.forName(om.get(), JAVAFX_LAUNCHER_CLASS_NAME);
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1009
            if (fxLauncherClass == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1010
                abort(null, "java.launcher.cls.error5");
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1011
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1012
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1013
            try {
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1014
                /*
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1015
                 * signature must be:
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1016
                 * public static void launchApplication(String launchName,
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1017
                 *     String launchMode, String[] args);
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1018
                 */
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1019
                fxLauncherMethod = fxLauncherClass.getMethod("launchApplication",
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1020
                        String.class, String.class, String[].class);
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1021
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1022
                // verify launcher signature as we do when validating the main method
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1023
                int mod = fxLauncherMethod.getModifiers();
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1024
                if (!Modifier.isStatic(mod)) {
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1025
                    abort(null, "java.launcher.javafx.error1");
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1026
                }
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1027
                if (fxLauncherMethod.getReturnType() != java.lang.Void.TYPE) {
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1028
                    abort(null, "java.launcher.javafx.error1");
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1029
                }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1030
            } catch (NoSuchMethodException ex) {
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1031
                abort(ex, "java.launcher.cls.error5", ex);
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1032
            }
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1033
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1034
            fxLaunchName = what;
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1035
            switch (mode) {
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1036
                case LM_CLASS:
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1037
                    fxLaunchMode = JAVAFX_LAUNCH_MODE_CLASS;
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1038
                    break;
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1039
                case LM_JAR:
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1040
                    fxLaunchMode = JAVAFX_LAUNCH_MODE_JAR;
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1041
                    break;
42178
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
  1042
                case LM_MODULE:
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
  1043
                    fxLaunchMode = JAVAFX_LAUNCH_MODE_MODULE;
cb5cb430e207 8169289: JavaFX application in named module fails to launch if no main method
ddehaven
parents: 41966
diff changeset
  1044
                    break;
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1045
                default:
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1046
                    // should not have gotten this far...
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1047
                    throw new InternalError(mode + ": Unknown launch mode");
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1048
            }
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1049
        }
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1050
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1051
        public static void main(String... args) throws Exception {
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1052
            if (fxLauncherMethod == null
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1053
                    || fxLaunchMode == null
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1054
                    || fxLaunchName == null) {
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1055
                throw new RuntimeException("Invalid JavaFX launch parameters");
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1056
            }
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1057
            // launch appClass via fxLauncherMethod
15003
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1058
            fxLauncherMethod.invoke(null,
364408faddeb 8004547: Extend JavaFX launcher support to allow full JavaFX launch feature set
ksrini
parents: 14518
diff changeset
  1059
                    new Object[] {fxLaunchName, fxLaunchMode, args});
14518
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1060
        }
f4b1adde53b3 8001533: java launcher must launch javafx applications
ksrini
parents: 13411
diff changeset
  1061
    }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1062
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1063
    /**
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1064
     * Called by the launcher to list the observable modules.
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1065
     */
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1066
    static void listModules() {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1067
        initOutput(System.out);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1068
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1069
        ModuleBootstrap.limitedFinder().findAll().stream()
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1070
            .sorted(new JrtFirstComparator())
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1071
            .forEach(LauncherHelper::showModule);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1072
    }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1073
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1074
    /**
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1075
     * Called by the launcher to show the resolved modules
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1076
     */
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1077
    static void showResolvedModules() {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1078
        initOutput(System.out);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1079
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1080
        ModuleLayer bootLayer = ModuleLayer.boot();
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1081
        Configuration cf = bootLayer.configuration();
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1082
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1083
        cf.modules().stream()
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1084
            .map(ResolvedModule::reference)
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1085
            .sorted(new JrtFirstComparator())
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1086
            .forEach(LauncherHelper::showModule);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1087
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1088
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1089
    /**
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1090
     * Called by the launcher to describe a module
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1091
     */
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1092
    static void describeModule(String moduleName) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1093
        initOutput(System.out);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1094
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1095
        ModuleFinder finder = ModuleBootstrap.limitedFinder();
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1096
        ModuleReference mref = finder.find(moduleName).orElse(null);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1097
        if (mref == null) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1098
            abort(null, "java.launcher.module.error4", moduleName);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1099
        }
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1100
        ModuleDescriptor md = mref.descriptor();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents: 34882
diff changeset
  1101
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1102
        // one-line summary
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1103
        showModule(mref);
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1104
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1105
        // unqualified exports (sorted by package)
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1106
        md.exports().stream()
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1107
            .filter(e -> !e.isQualified())
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1108
            .sorted(Comparator.comparing(Exports::source))
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1109
            .map(e -> Stream.concat(Stream.of(e.source()),
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1110
                                    toStringStream(e.modifiers()))
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1111
                    .collect(Collectors.joining(" ")))
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1112
            .forEach(sourceAndMods -> ostream.format("exports %s%n", sourceAndMods));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1113
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1114
        // dependences
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1115
        for (Requires r : md.requires()) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1116
            String nameAndMods = Stream.concat(Stream.of(r.name()),
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1117
                                               toStringStream(r.modifiers()))
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1118
                    .collect(Collectors.joining(" "));
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1119
            ostream.format("requires %s", nameAndMods);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1120
            finder.find(r.name())
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1121
                .map(ModuleReference::descriptor)
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1122
                .filter(ModuleDescriptor::isAutomatic)
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1123
                .ifPresent(any -> ostream.print(" automatic"));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1124
            ostream.println();
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1125
        }
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1126
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1127
        // service use and provides
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1128
        for (String s : md.uses()) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1129
            ostream.format("uses %s%n", s);
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1130
        }
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1131
        for (Provides ps : md.provides()) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1132
            String names = ps.providers().stream().collect(Collectors.joining(" "));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1133
            ostream.format("provides %s with %s%n", ps.service(), names);
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1134
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1135
        }
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1136
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1137
        // qualified exports
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1138
        for (Exports e : md.exports()) {
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1139
            if (e.isQualified()) {
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1140
                String who = e.targets().stream().collect(Collectors.joining(" "));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1141
                ostream.format("qualified exports %s to %s%n", e.source(), who);
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1142
            }
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1143
        }
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1144
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1145
        // open packages
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1146
        for (Opens opens: md.opens()) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1147
            if (opens.isQualified())
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1148
                ostream.print("qualified ");
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1149
            String sourceAndMods = Stream.concat(Stream.of(opens.source()),
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1150
                                                 toStringStream(opens.modifiers()))
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1151
                    .collect(Collectors.joining(" "));
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1152
            ostream.format("opens %s", sourceAndMods);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1153
            if (opens.isQualified()) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1154
                String who = opens.targets().stream().collect(Collectors.joining(" "));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1155
                ostream.format(" to %s", who);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1156
            }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1157
            ostream.println();
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1158
        }
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1159
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1160
        // non-exported/non-open packages
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1161
        Set<String> concealed = new TreeSet<>(md.packages());
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1162
        md.exports().stream().map(Exports::source).forEach(concealed::remove);
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1163
        md.opens().stream().map(Opens::source).forEach(concealed::remove);
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1164
        concealed.forEach(p -> ostream.format("contains %s%n", p));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1165
    }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1166
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1167
    /**
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1168
     * Prints a single line with the module name, version and modifiers
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1169
     */
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1170
    private static void showModule(ModuleReference mref) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1171
        ModuleDescriptor md = mref.descriptor();
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1172
        ostream.print(md.toNameAndVersion());
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1173
        mref.location()
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1174
                .filter(uri -> !isJrt(uri))
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1175
                .ifPresent(uri -> ostream.format(" %s", uri));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1176
        if (md.isOpen())
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1177
            ostream.print(" open");
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1178
        if (md.isAutomatic())
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1179
            ostream.print(" automatic");
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1180
        ostream.println();
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1181
    }
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44364
diff changeset
  1182
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1183
    /**
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1184
     * A ModuleReference comparator that considers modules in the run-time
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1185
     * image to be less than modules than not in the run-time image.
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1186
     */
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1187
    private static class JrtFirstComparator implements Comparator<ModuleReference> {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1188
        private final Comparator<ModuleReference> real;
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1189
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1190
        JrtFirstComparator() {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1191
            this.real = Comparator.comparing(ModuleReference::descriptor);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1192
        }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1193
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1194
        @Override
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1195
        public int compare(ModuleReference a, ModuleReference b) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1196
            if (isJrt(a)) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1197
                return isJrt(b) ? real.compare(a, b) : -1;
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1198
            } else {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1199
                return isJrt(b) ? 1 : real.compare(a, b);
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1200
            }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1201
        }
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
  1202
    }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
  1203
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1204
    private static <T> Stream<String> toStringStream(Set<T> s) {
42338
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
  1205
        return s.stream().map(e -> e.toString().toLowerCase());
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
  1206
    }
a60f280f803c 8169069: Module system implementation refresh (11/2016)
alanb
parents: 41966
diff changeset
  1207
45004
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1208
    private static boolean isJrt(ModuleReference mref) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1209
        return isJrt(mref.location().orElse(null));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1210
    }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1211
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1212
    private static boolean isJrt(URI uri) {
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1213
        return (uri != null && uri.getScheme().equalsIgnoreCase("jrt"));
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1214
    }
ea3137042a61 8178380: Module system implementation refresh (5/2017)
alanb
parents: 44545
diff changeset
  1215
1323
e14a3b3536cd 6742159: (launcher) improve the java launching mechanism
ksrini
parents:
diff changeset
  1216
}