src/jdk.jlink/share/classes/jdk/tools/jlink/internal/TaskHelper.java
author mr
Tue, 29 Oct 2019 08:26:55 -0700
changeset 58842 6c255334120d
parent 54824 adb3a3aa2e52
permissions -rw-r--r--
8232080: jlink plugins for vendor information and run-time options Reviewed-by: ihse, alanb, kvn, bobv, mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 54824
diff changeset
     2
 * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * accompanied this code).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 * questions.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    24
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    25
package jdk.tools.jlink.internal;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    26
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    27
import java.io.IOException;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    28
import java.io.PrintWriter;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    29
import java.nio.file.Files;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    30
import java.nio.file.Path;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    31
import java.nio.file.Paths;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    32
import java.text.MessageFormat;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    33
import java.util.ArrayList;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    34
import java.util.Arrays;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    35
import java.util.Collections;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    36
import java.util.HashMap;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    37
import java.util.HashSet;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    38
import java.util.List;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    39
import java.util.Locale;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    40
import java.util.Map;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    41
import java.util.Map.Entry;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    42
import java.util.MissingResourceException;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    43
import java.util.ResourceBundle;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    44
import java.util.Set;
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
    45
import java.util.stream.Collectors;
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
    46
import java.util.stream.Stream;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    47
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    48
import jdk.tools.jlink.builder.DefaultImageBuilder;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    49
import jdk.tools.jlink.builder.ImageBuilder;
41559
5b33f33df1fb 8168091: jlink should check security permission early when programmatic access is used
sundar
parents: 40261
diff changeset
    50
import jdk.tools.jlink.internal.Jlink.PluginsConfiguration;
53548
0a35de73f7a8 8217877: Dead code in jdk.jlink's TaskHelper
sgehwolf
parents: 48543
diff changeset
    51
import jdk.tools.jlink.internal.plugins.DefaultCompressPlugin;
53923
c431ab7f9e85 8218913: Rename --strip-debug jlink plugin
sgehwolf
parents: 53548
diff changeset
    52
import jdk.tools.jlink.internal.plugins.DefaultStripDebugPlugin;
53548
0a35de73f7a8 8217877: Dead code in jdk.jlink's TaskHelper
sgehwolf
parents: 48543
diff changeset
    53
import jdk.tools.jlink.internal.plugins.ExcludeJmodSectionPlugin;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    54
import jdk.tools.jlink.internal.plugins.PluginsResourceBundle;
53548
0a35de73f7a8 8217877: Dead code in jdk.jlink's TaskHelper
sgehwolf
parents: 48543
diff changeset
    55
import jdk.tools.jlink.plugin.Plugin;
0a35de73f7a8 8217877: Dead code in jdk.jlink's TaskHelper
sgehwolf
parents: 48543
diff changeset
    56
import jdk.tools.jlink.plugin.Plugin.Category;
0a35de73f7a8 8217877: Dead code in jdk.jlink's TaskHelper
sgehwolf
parents: 48543
diff changeset
    57
import jdk.tools.jlink.plugin.PluginException;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    58
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    59
/**
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    60
 *
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    61
 * JLink and JImage tools shared helper.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    62
 */
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    63
public final class TaskHelper {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    64
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    65
    public static final String JLINK_BUNDLE = "jdk.tools.jlink.resources.jlink";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    66
    public static final String JIMAGE_BUNDLE = "jdk.tools.jimage.resources.jimage";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    67
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    68
    private static final String DEFAULTS_PROPERTY = "jdk.jlink.defaults";
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    69
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    70
    public final class BadArgs extends Exception {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    71
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    72
        static final long serialVersionUID = 8765093759964640721L;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    73
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    74
        private BadArgs(String key, Object... args) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    75
            super(bundleHelper.getMessage(key, args));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    76
            this.key = key;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    77
            this.args = args;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    78
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    79
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    80
        public BadArgs showUsage(boolean b) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    81
            showUsage = b;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    82
            return this;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    83
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    84
        public final String key;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    85
        public final Object[] args;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    86
        public boolean showUsage;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    87
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    88
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
    89
    public static class Option<T> implements Comparable<T> {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    90
        public interface Processing<T> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    91
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    92
            void process(T task, String opt, String arg) throws BadArgs;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    93
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    94
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    95
        final boolean hasArg;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    96
        final Processing<T> processing;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
    97
        final boolean hidden;
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
    98
        final String name;
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
    99
        final String shortname;
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   100
        final String shortname2;
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   101
        final boolean terminalOption;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   102
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   103
        public Option(boolean hasArg,
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   104
                      Processing<T> processing,
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   105
                      boolean hidden,
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   106
                      String name,
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   107
                      String shortname,
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   108
                      String shortname2,
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   109
                      boolean isTerminal)
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   110
        {
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   111
            if (!name.startsWith("--")) {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   112
                throw new RuntimeException("option name missing --, " + name);
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   113
            }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   114
            if (!shortname.isEmpty() && !shortname.startsWith("-")) {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   115
                throw new RuntimeException("short name missing -, " + shortname);
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   116
            }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   117
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   118
            this.hasArg = hasArg;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   119
            this.processing = processing;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   120
            this.hidden = hidden;
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   121
            this.name = name;
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   122
            this.shortname = shortname;
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   123
            this.shortname2 = shortname2;
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   124
            this.terminalOption = isTerminal;
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   125
        }
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   126
        public Option(boolean hasArg,
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   127
                      Processing<T> processing,
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   128
                      boolean hidden,
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   129
                      String name,
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   130
                      String shortname,
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   131
                      boolean isTerminal)
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   132
        {
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   133
            this(hasArg, processing, false, name, shortname, "", isTerminal);
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   134
        }
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   135
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   136
        public Option(boolean hasArg, Processing<T> processing, String name, String shortname, boolean isTerminal) {
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   137
            this(hasArg, processing, false, name, shortname, "", isTerminal);
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   138
        }
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   139
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   140
        public Option(boolean hasArg, Processing<T> processing, String name, String shortname, String shortname2) {
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   141
            this(hasArg, processing, false, name, shortname, shortname2, false);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   142
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   143
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   144
        public Option(boolean hasArg, Processing<T> processing, String name, String shortname) {
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   145
            this(hasArg, processing, false, name, shortname, "", false);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   146
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   147
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   148
        public Option(boolean hasArg, Processing<T> processing, boolean hidden, String name) {
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   149
            this(hasArg, processing, hidden, name, "", "", false);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   150
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   151
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   152
        public Option(boolean hasArg, Processing<T> processing, String name) {
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   153
            this(hasArg, processing, false, name, "", false);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   154
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   155
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   156
        public boolean isHidden() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   157
            return hidden;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   158
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   159
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   160
        public boolean isTerminal() {
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   161
            return terminalOption;
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   162
        }
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   163
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   164
        public boolean matches(String opt) {
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   165
            return opt.equals(name) ||
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   166
                   opt.equals(shortname) ||
48543
7067fe4e054e 8189102: All tools should support -?, -h and --help
goetz
parents: 47216
diff changeset
   167
                   opt.equals(shortname2) ||
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   168
                   hasArg && opt.startsWith("--") && opt.startsWith(name + "=");
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   169
         }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   170
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   171
        public boolean ignoreRest() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   172
            return false;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   173
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   174
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   175
        void process(T task, String opt, String arg) throws BadArgs {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   176
            processing.process(task, opt, arg);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   177
        }
38869
4bac8f3bce74 8156994: jimage --help is not helpful
jlaskey
parents: 38457
diff changeset
   178
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   179
        public String getName() {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   180
            return name;
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   181
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   182
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   183
        public String resourceName() {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   184
            return resourcePrefix() + name.substring(2);
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   185
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   186
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   187
        public String getShortname() {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   188
            return shortname;
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   189
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   190
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   191
        public String resourcePrefix() {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   192
            return "main.opt.";
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   193
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   194
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   195
        @Override
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   196
        public int compareTo(Object object) {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   197
            if (!(object instanceof Option<?>)) {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   198
                throw new RuntimeException("comparing non-Option");
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   199
            }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   200
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   201
            Option<?> option = (Option<?>)object;
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   202
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   203
            return name.compareTo(option.name);
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   204
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   205
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   206
    }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   207
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   208
    private static class PluginOption extends Option<PluginsHelper> {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   209
        public PluginOption(boolean hasArg,
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   210
                Processing<PluginsHelper> processing, boolean hidden, String name, String shortname) {
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   211
            super(hasArg, processing, hidden, name, shortname, false);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   212
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   213
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   214
        public PluginOption(boolean hasArg,
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   215
                Processing<PluginsHelper> processing, boolean hidden, String name) {
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   216
            super(hasArg, processing, hidden, name, "", false);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   217
        }
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   218
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   219
        public String resourcePrefix() {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   220
            return "plugin.opt.";
38869
4bac8f3bce74 8156994: jimage --help is not helpful
jlaskey
parents: 38457
diff changeset
   221
        }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   222
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   223
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   224
    private final class PluginsHelper {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   225
54824
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   226
        // Duplicated here so as to avoid a direct dependency on platform specific plugin
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   227
        private static final String STRIP_NATIVE_DEBUG_SYMBOLS_NAME = "strip-native-debug-symbols";
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44367
diff changeset
   228
        private ModuleLayer pluginsLayer = ModuleLayer.boot();
41831
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   229
        private final List<Plugin> plugins;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   230
        private String lastSorter;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   231
        private boolean listPlugins;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   232
        private Path existingImage;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   233
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   234
        // plugin to args maps. Each plugin may be used more than once in command line.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   235
        // Each such occurrence results in a Map of arguments. So, there could be multiple
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   236
        // args maps per plugin instance.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   237
        private final Map<Plugin, List<Map<String, String>>> pluginToMaps = new HashMap<>();
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   238
        private final List<PluginOption> pluginsOptions = new ArrayList<>();
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   239
        private final List<PluginOption> mainOptions = new ArrayList<>();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   240
53548
0a35de73f7a8 8217877: Dead code in jdk.jlink's TaskHelper
sgehwolf
parents: 48543
diff changeset
   241
        private PluginsHelper() throws BadArgs {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   242
41831
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   243
            plugins = PluginRepository.getPlugins(pluginsLayer);
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   244
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   245
            Set<String> optionsSeen = new HashSet<>();
41831
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   246
            for (Plugin plugin : plugins) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   247
                if (!Utils.isDisabled(plugin)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   248
                    addOrderedPluginOptions(plugin, optionsSeen);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   249
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   250
            }
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   251
            mainOptions.add(new PluginOption(true, (task, opt, arg) -> {
41831
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   252
                    for (Plugin plugin : plugins) {
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   253
                        if (plugin.getName().equals(arg)) {
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   254
                            pluginToMaps.remove(plugin);
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   255
                            return;
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   256
                        }
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   257
                    }
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   258
                    throw newBadArgs("err.no.such.plugin", arg);
2dd91b18195b 8160063: Provide a means to disable a plugin via the command line
sundar
parents: 41817
diff changeset
   259
                },
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   260
                false, "--disable-plugin"));
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   261
            mainOptions.add(new PluginOption(true, (task, opt, arg) -> {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   262
                Path path = Paths.get(arg);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   263
                if (!Files.exists(path) || !Files.isDirectory(path)) {
41953
3e89e6103470 8155756: Better context for some jlink exceptions
jlaskey
parents: 41919
diff changeset
   264
                    throw newBadArgs("err.image.must.exist", path);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   265
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   266
                existingImage = path.toAbsolutePath();
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   267
            }, true, "--post-process-path"));
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   268
            mainOptions.add(new PluginOption(true,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   269
                    (task, opt, arg) -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   270
                        lastSorter = arg;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   271
                    },
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   272
                    true, "--resources-last-sorter"));
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   273
            mainOptions.add(new PluginOption(false,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   274
                    (task, opt, arg) -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   275
                        listPlugins = true;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   276
                    },
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   277
                    false, "--list-plugins"));
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   278
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   279
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   280
        private List<Map<String, String>> argListFor(Plugin plugin) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   281
            List<Map<String, String>> mapList = pluginToMaps.get(plugin);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   282
            if (mapList == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   283
                mapList = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   284
                pluginToMaps.put(plugin, mapList);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   285
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   286
            return mapList;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   287
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   288
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   289
        private void addEmptyArgumentMap(Plugin plugin) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   290
            argListFor(plugin).add(Collections.emptyMap());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   291
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   292
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   293
        private Map<String, String> addArgumentMap(Plugin plugin) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   294
            Map<String, String> map = new HashMap<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   295
            argListFor(plugin).add(map);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   296
            return map;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   297
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   298
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   299
        private void addOrderedPluginOptions(Plugin plugin,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   300
            Set<String> optionsSeen) throws BadArgs {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   301
            String option = plugin.getOption();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   302
            if (option == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   303
                return;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   304
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   305
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   306
            // make sure that more than one plugin does not use the same option!
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   307
            if (optionsSeen.contains(option)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   308
                throw new BadArgs("err.plugin.mutiple.options",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   309
                        option);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   310
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   311
            optionsSeen.add(option);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   312
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   313
            PluginOption plugOption
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   314
                    = new PluginOption(plugin.hasArguments(),
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   315
                            (task, opt, arg) -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   316
                                if (!Utils.isFunctional(plugin)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   317
                                    throw newBadArgs("err.provider.not.functional",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   318
                                            option);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   319
                                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   320
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   321
                                if (! plugin.hasArguments()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   322
                                    addEmptyArgumentMap(plugin);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   323
                                    return;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   324
                                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   325
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   326
                                Map<String, String> m = addArgumentMap(plugin);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   327
                                // handle one or more arguments
58842
6c255334120d 8232080: jlink plugins for vendor information and run-time options
mr
parents: 54824
diff changeset
   328
                                if (plugin.hasRawArgument() || arg.indexOf(':') == -1) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   329
                                    // single argument case
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   330
                                    m.put(option, arg);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   331
                                } else {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   332
                                    // This option can accept more than one arguments
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   333
                                    // like --option_name=arg_value:arg2=value2:arg3=value3
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   334
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   335
                                    // ":" followed by word char condition takes care of args that
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   336
                                    // like Windows absolute paths "C:\foo", "C:/foo" [cygwin] etc.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   337
                                    // This enforces that key names start with a word character.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   338
                                    String[] args = arg.split(":(?=\\w)", -1);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   339
                                    String firstArg = args[0];
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   340
                                    if (firstArg.isEmpty()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   341
                                        throw newBadArgs("err.provider.additional.arg.error",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   342
                                            option, arg);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   343
                                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   344
                                    m.put(option, firstArg);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   345
                                    // process the additional arguments
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   346
                                    for (int i = 1; i < args.length; i++) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   347
                                        String addArg = args[i];
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   348
                                        int eqIdx = addArg.indexOf('=');
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   349
                                        if (eqIdx == -1) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   350
                                            throw newBadArgs("err.provider.additional.arg.error",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   351
                                                option, arg);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   352
                                        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   353
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   354
                                        String addArgName = addArg.substring(0, eqIdx);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   355
                                        String addArgValue = addArg.substring(eqIdx+1);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   356
                                        if (addArgName.isEmpty() || addArgValue.isEmpty()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   357
                                            throw newBadArgs("err.provider.additional.arg.error",
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   358
                                                option, arg);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   359
                                        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   360
                                        m.put(addArgName, addArgValue);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   361
                                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   362
                                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   363
                            },
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   364
                            false, "--" + option);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   365
            pluginsOptions.add(plugOption);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   366
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   367
            if (Utils.isFunctional(plugin)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   368
                if (Utils.isAutoEnabled(plugin)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   369
                    addEmptyArgumentMap(plugin);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   370
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   371
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   372
                if (plugin instanceof DefaultCompressPlugin) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   373
                    plugOption
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   374
                        = new PluginOption(false,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   375
                            (task, opt, arg) -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   376
                                Map<String, String> m = addArgumentMap(plugin);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   377
                                m.put(DefaultCompressPlugin.NAME, DefaultCompressPlugin.LEVEL_2);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   378
                            }, false, "--compress", "-c");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   379
                    mainOptions.add(plugOption);
53923
c431ab7f9e85 8218913: Rename --strip-debug jlink plugin
sgehwolf
parents: 53548
diff changeset
   380
                } else if (plugin instanceof DefaultStripDebugPlugin) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   381
                    plugOption
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   382
                        = new PluginOption(false,
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   383
                            (task, opt, arg) -> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   384
                                addArgumentMap(plugin);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   385
                            }, false, "--strip-debug", "-G");
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   386
                    mainOptions.add(plugOption);
41561
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   387
                } else if (plugin instanceof ExcludeJmodSectionPlugin) {
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   388
                    plugOption = new PluginOption(false, (task, opt, arg) -> {
41561
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   389
                            Map<String, String> m = addArgumentMap(plugin);
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   390
                            m.put(ExcludeJmodSectionPlugin.NAME,
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   391
                                  ExcludeJmodSectionPlugin.MAN_PAGES);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   392
                        }, false, "--no-man-pages");
41561
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   393
                    mainOptions.add(plugOption);
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   394
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   395
                    plugOption = new PluginOption(false, (task, opt, arg) -> {
41561
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   396
                        Map<String, String> m = addArgumentMap(plugin);
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   397
                        m.put(ExcludeJmodSectionPlugin.NAME,
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   398
                              ExcludeJmodSectionPlugin.INCLUDE_HEADER_FILES);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   399
                    }, false, "--no-header-files");
41561
0c6942d13f2e 8167558: Add new JMOD section for header files and man pages
mchung
parents: 41559
diff changeset
   400
                    mainOptions.add(plugOption);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   401
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   402
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   403
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   404
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   405
        private PluginOption getOption(String name) throws BadArgs {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   406
            for (PluginOption o : pluginsOptions) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   407
                if (o.matches(name)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   408
                    return o;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   409
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   410
            }
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   411
            for (PluginOption o : mainOptions) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   412
                if (o.matches(name)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   413
                    return o;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   414
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   415
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   416
            return null;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   417
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   418
42762
11a1ad340d4f 8170289: Re-examine entry point support in jlink
sundar
parents: 42703
diff changeset
   419
        private PluginsConfiguration getPluginsConfig(Path output, Map<String, String> launchers
37779
7c84df693837 8154956: Module system implementation refresh (4/2016)
alanb
parents: 36511
diff changeset
   420
                    ) throws IOException, BadArgs {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   421
            if (output != null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   422
                if (Files.exists(output)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   423
                    throw new PluginException(PluginsResourceBundle.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   424
                            getMessage("err.dir.already.exits", output));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   425
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   426
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   427
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   428
            List<Plugin> pluginsList = new ArrayList<>();
54824
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   429
            Set<String> seenPlugins = new HashSet<>();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   430
            for (Entry<Plugin, List<Map<String, String>>> entry : pluginToMaps.entrySet()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   431
                Plugin plugin = entry.getKey();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   432
                List<Map<String, String>> argsMaps = entry.getValue();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   433
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   434
                // same plugin option may be used multiple times in command line.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   435
                // we call configure once for each occurrence. It is upto the plugin
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   436
                // to 'merge' and/or 'override' arguments.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   437
                for (Map<String, String> map : argsMaps) {
42330
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   438
                    try {
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   439
                        plugin.configure(Collections.unmodifiableMap(map));
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   440
                    } catch (IllegalArgumentException e) {
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   441
                        if (JlinkTask.DEBUG) {
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   442
                            System.err.println("Plugin " + plugin.getName() + " threw exception with config: " + map);
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   443
                            e.printStackTrace();
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   444
                        }
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   445
                        throw e;
bd999576b78d 8160359: Improve jlink logging for cases when a plugin throws exception
sundar
parents: 42174
diff changeset
   446
                    }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   447
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   448
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   449
                if (!Utils.isDisabled(plugin)) {
54824
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   450
                    // make sure that --strip-debug and --strip-native-debug-symbols
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   451
                    // aren't being used at the same time. --strip-debug invokes --strip-native-debug-symbols on
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   452
                    // platforms that support it, so it makes little sense to allow both at the same time.
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   453
                    if ((plugin instanceof DefaultStripDebugPlugin && seenPlugins.contains(STRIP_NATIVE_DEBUG_SYMBOLS_NAME)) ||
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   454
                        (STRIP_NATIVE_DEBUG_SYMBOLS_NAME.equals(plugin.getName()) && seenPlugins.contains(DefaultStripDebugPlugin.NAME))) {
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   455
                        throw new BadArgs("err.plugin.conflicts", "--" + DefaultStripDebugPlugin.NAME,
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   456
                                                                "-G",
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   457
                                                                "--" + STRIP_NATIVE_DEBUG_SYMBOLS_NAME);
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   458
                    }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   459
                    pluginsList.add(plugin);
54824
adb3a3aa2e52 8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents: 53923
diff changeset
   460
                    seenPlugins.add(plugin.getName());
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   461
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   462
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   463
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   464
            // recreate or postprocessing don't require an output directory.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   465
            ImageBuilder builder = null;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   466
            if (output != null) {
42762
11a1ad340d4f 8170289: Re-examine entry point support in jlink
sundar
parents: 42703
diff changeset
   467
                builder = new DefaultImageBuilder(output, launchers);
11a1ad340d4f 8170289: Re-examine entry point support in jlink
sundar
parents: 42703
diff changeset
   468
            }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   469
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   470
            return new Jlink.PluginsConfiguration(pluginsList,
38320
e24c7029e8ba 8156914: jlink API minor cleanups
sundar
parents: 37779
diff changeset
   471
                    builder, lastSorter);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   472
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   473
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   474
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   475
    private static final class ResourceBundleHelper {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   476
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   477
        private final ResourceBundle bundle;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   478
        private final ResourceBundle pluginBundle;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   479
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   480
        ResourceBundleHelper(String path) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   481
            Locale locale = Locale.getDefault();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   482
            try {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   483
                bundle = ResourceBundle.getBundle(path, locale);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   484
                pluginBundle = ResourceBundle.getBundle("jdk.tools.jlink.resources.plugins", locale);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   485
            } catch (MissingResourceException e) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   486
                throw new InternalError("Cannot find jlink resource bundle for locale " + locale);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   487
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   488
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   489
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   490
        String getMessage(String key, Object... args) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   491
            String val;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   492
            try {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   493
                val = bundle.getString(key);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   494
            } catch (MissingResourceException e) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   495
                // XXX OK, check in plugin bundle
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   496
                val = pluginBundle.getString(key);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   497
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   498
            return MessageFormat.format(val, args);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   499
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   500
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   501
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   502
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   503
    public final class OptionsHelper<T> {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   504
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   505
        private final List<Option<T>> options;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   506
        private String[] command;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   507
        private String defaults;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   508
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   509
        OptionsHelper(List<Option<T>> options) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   510
            this.options = options;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   511
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   512
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   513
        private boolean hasArgument(String optionName) throws BadArgs {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   514
            Option<?> opt = getOption(optionName);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   515
            if (opt == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   516
                opt = pluginOptions.getOption(optionName);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   517
                if (opt == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   518
                    throw new BadArgs("err.unknown.option", optionName).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   519
                            showUsage(true);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   520
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   521
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   522
            return opt.hasArg;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   523
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   524
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   525
        public boolean shouldListPlugins() {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   526
            return pluginOptions.listPlugins;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   527
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   528
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   529
        private String getPluginsPath(String[] args) throws BadArgs {
43328
91f9c9170d97 8172864: Remove custom plugin module path
sundar
parents: 42762
diff changeset
   530
            return null;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   531
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   532
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   533
        /**
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   534
         * Handles all options.  This method stops processing the argument
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   535
         * at the first non-option argument i.e. not starts with `-`, or
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   536
         * at the first terminal option and returns the remaining arguments,
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   537
         * if any.
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   538
         */
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   539
        public List<String> handleOptions(T task, String[] args) throws BadArgs {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   540
            // findbugs warning, copy instead of keeping a reference.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   541
            command = Arrays.copyOf(args, args.length);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   542
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   543
            // Must extract it prior to do any option analysis.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   544
            // Required to interpret custom plugin options.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   545
            // Unit tests can call Task multiple time in same JVM.
53548
0a35de73f7a8 8217877: Dead code in jdk.jlink's TaskHelper
sgehwolf
parents: 48543
diff changeset
   546
            pluginOptions = new PluginsHelper();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   547
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   548
            // process options
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   549
            for (int i = 0; i < args.length; i++) {
43987
068a2419b5a7 8169713: jimage fails with StringIndexOutOfBoundsException when path to the inspected image is an empty string
redestad
parents: 43712
diff changeset
   550
                if (args[i].startsWith("-")) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   551
                    String name = args[i];
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   552
                    PluginOption pluginOption = null;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   553
                    Option<T> option = getOption(name);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   554
                    if (option == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   555
                        pluginOption = pluginOptions.getOption(name);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   556
                        if (pluginOption == null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   557
                            throw new BadArgs("err.unknown.option", name).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   558
                                    showUsage(true);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   559
                        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   560
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   561
                    Option<?> opt = pluginOption == null ? option : pluginOption;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   562
                    String param = null;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   563
                    if (opt.hasArg) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   564
                        if (name.startsWith("--") && name.indexOf('=') > 0) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   565
                            param = name.substring(name.indexOf('=') + 1,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   566
                                    name.length());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   567
                        } else if (i + 1 < args.length) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   568
                            param = args[++i];
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   569
                        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   570
                        if (param == null || param.isEmpty()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   571
                                || (param.length() >= 2 && param.charAt(0) == '-'
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   572
                                && param.charAt(1) == '-')) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   573
                            throw new BadArgs("err.missing.arg", name).
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   574
                                    showUsage(true);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   575
                        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   576
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   577
                    if (pluginOption != null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   578
                        pluginOption.process(pluginOptions, name, param);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   579
                    } else {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   580
                        option.process(task, name, param);
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   581
                        if (option.isTerminal()) {
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   582
                            return ++i < args.length
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   583
                                        ? Stream.of(Arrays.copyOfRange(args, i, args.length))
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   584
                                                .collect(Collectors.toList())
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   585
                                        : Collections.emptyList();
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   586
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   587
                        }
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   588
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   589
                    if (opt.ignoreRest()) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   590
                        i = args.length;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   591
                    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   592
                } else {
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   593
                    return Stream.of(Arrays.copyOfRange(args, i, args.length))
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   594
                                 .collect(Collectors.toList());
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   595
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   596
            }
44367
a81c9c6619fb 8174826: jlink support for linking in service provider modules
mchung
parents: 43987
diff changeset
   597
            return Collections.emptyList();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   598
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   599
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   600
        private Option<T> getOption(String name) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   601
            for (Option<T> o : options) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   602
                if (o.matches(name)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   603
                    return o;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   604
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   605
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   606
            return null;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   607
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   608
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   609
        public void showHelp(String progName) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   610
            log.println(bundleHelper.getMessage("main.usage", progName));
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   611
            Stream.concat(options.stream(), pluginOptions.mainOptions.stream())
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   612
                .filter(option -> !option.isHidden())
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   613
                .sorted()
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   614
                .forEach(option -> {
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   615
                     log.println(bundleHelper.getMessage(option.resourceName()));
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   616
                });
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   617
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   618
            log.println(bundleHelper.getMessage("main.command.files"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   619
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   620
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   621
        public void listPlugins() {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   622
            log.println("\n" + bundleHelper.getMessage("main.extended.help"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   623
            List<Plugin> pluginList = PluginRepository.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   624
                    getPlugins(pluginOptions.pluginsLayer);
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   625
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   626
            for (Plugin plugin : Utils.getSortedPlugins(pluginList)) {
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   627
                showPlugin(plugin, log);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   628
            }
39150
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38869
diff changeset
   629
cb99396625b4 8159172: Update usage of jlink/jimage/jmod to show option patterns
jlaskey
parents: 38869
diff changeset
   630
            log.println("\n" + bundleHelper.getMessage("main.extended.help.footer"));
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   631
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   632
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   633
        private void showPlugin(Plugin plugin, PrintWriter log) {
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   634
            if (showsPlugin(plugin)) {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   635
                log.println("\n" + bundleHelper.getMessage("main.plugin.name")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   636
                        + ": " + plugin.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   637
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   638
                // print verbose details for non-builtin plugins
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   639
                if (!Utils.isBuiltin(plugin)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   640
                    log.println(bundleHelper.getMessage("main.plugin.class")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   641
                         + ": " + plugin.getClass().getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   642
                    log.println(bundleHelper.getMessage("main.plugin.module")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   643
                         + ": " + plugin.getClass().getModule().getName());
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   644
                    Category category = plugin.getType();
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   645
                    log.println(bundleHelper.getMessage("main.plugin.category")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   646
                         + ": " + category.getName());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   647
                    log.println(bundleHelper.getMessage("main.plugin.state")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   648
                        + ": " + plugin.getStateDescription());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   649
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   650
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   651
                String option = plugin.getOption();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   652
                if (option != null) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   653
                    log.println(bundleHelper.getMessage("main.plugin.option")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   654
                        + ": --" + plugin.getOption()
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   655
                        + (plugin.hasArguments()? ("=" + plugin.getArgumentsDescription()) : ""));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   656
                }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   657
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   658
                // description can be long spanning more than one line and so
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   659
                // print a newline after description label.
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   660
                log.println(bundleHelper.getMessage("main.plugin.description")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   661
                        + ": " + plugin.getDescription());
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   662
            }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   663
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   664
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   665
        String[] getInputCommand() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   666
            return command;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   667
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   668
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   669
        String getDefaults() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   670
            return defaults;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   671
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   672
44545
83b611b88ac8 8177530: Module system implementation refresh (4/2017)
alanb
parents: 44367
diff changeset
   673
        public ModuleLayer getPluginsLayer() {
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   674
            return pluginOptions.pluginsLayer;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   675
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   676
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   677
42174
fa763b059501 8168256: Plugin alias options in jlink --help output seems to be in an arbitrary order
jlaskey
parents: 41953
diff changeset
   678
    private PluginsHelper pluginOptions;
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   679
    private PrintWriter log;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   680
    private final ResourceBundleHelper bundleHelper;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   681
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   682
    public TaskHelper(String path) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   683
        if (!JLINK_BUNDLE.equals(path) && !JIMAGE_BUNDLE.equals(path)) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   684
            throw new IllegalArgumentException("Invalid Bundle");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   685
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   686
        this.bundleHelper = new ResourceBundleHelper(path);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   687
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   688
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   689
    public <T> OptionsHelper<T> newOptionsHelper(Class<T> clazz,
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   690
            Option<?>[] options) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   691
        List<Option<T>> optionsList = new ArrayList<>();
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   692
        for (Option<?> o : options) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   693
            @SuppressWarnings("unchecked")
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   694
            Option<T> opt = (Option<T>) o;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   695
            optionsList.add(opt);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   696
        }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   697
        return new OptionsHelper<>(optionsList);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   698
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   699
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   700
    public BadArgs newBadArgs(String key, Object... args) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   701
        return new BadArgs(key, args);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   702
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   703
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   704
    public String getMessage(String key, Object... args) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   705
        return bundleHelper.getMessage(key, args);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   706
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   707
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   708
    public void setLog(PrintWriter log) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   709
        this.log = log;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   710
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   711
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   712
    public void reportError(String key, Object... args) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   713
        log.println(bundleHelper.getMessage("error.prefix") + " "
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   714
                + bundleHelper.getMessage(key, args));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   715
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   716
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   717
    public void reportUnknownError(String message) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   718
        log.println(bundleHelper.getMessage("error.prefix") + " " + message);
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   719
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   720
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   721
    public void warning(String key, Object... args) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   722
        log.println(bundleHelper.getMessage("warn.prefix") + " "
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   723
                + bundleHelper.getMessage(key, args));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   724
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   725
42762
11a1ad340d4f 8170289: Re-examine entry point support in jlink
sundar
parents: 42703
diff changeset
   726
    public PluginsConfiguration getPluginsConfig(Path output, Map<String, String> launchers)
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   727
            throws IOException, BadArgs {
42762
11a1ad340d4f 8170289: Re-examine entry point support in jlink
sundar
parents: 42703
diff changeset
   728
        return pluginOptions.getPluginsConfig(output, launchers);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   729
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   730
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   731
    public Path getExistingImage() {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   732
        return pluginOptions.existingImage;
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   733
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   734
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   735
    public void showVersion(boolean full) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   736
        log.println(version(full ? "full" : "release"));
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   737
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   738
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   739
    public String version(String key) {
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   740
        return System.getProperty("java.version");
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   741
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   742
39321
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   743
    // Display all plugins
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   744
    private static boolean showsPlugin(Plugin plugin) {
c60f34e8c057 8160641: PostProcessingPlugin and ExecutableImage should not be part of plugin API
sundar
parents: 39150
diff changeset
   745
        return (!Utils.isDisabled(plugin) && plugin.getOption() != null);
36511
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   746
    }
9d0388c6b336 8142968: Module System implementation
alanb
parents:
diff changeset
   747
}