Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 jdk.jpackage.jmod - JPackage Tool
JDK 17 jdk.jpackage.jmod is the JMOD file for JDK 17 JPackage tool,
which can be invoked by the "jpackage" command.
JDK 17 JPackage tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jpackage.jmod.
JDK 17 JPackage tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JPackage tool source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.jpackage.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/jpackage/internal/AddLauncherArguments.java
/*
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.jpackage.internal;
import java.nio.file.Path;
import java.util.HashMap;
import java.util.Map;
import java.util.List;
import jdk.jpackage.internal.Arguments.CLIOptions;
import static jdk.jpackage.internal.StandardBundlerParam.LAUNCHER_DATA;
import static jdk.jpackage.internal.StandardBundlerParam.APP_NAME;
/*
* AddLauncherArguments
*
* Processes a add-launcher properties file to create the Map of
* bundle params applicable to the add-launcher:
*
* BundlerParams p = (new AddLauncherArguments(file)).getLauncherMap();
*
* A add-launcher is another executable program generated by either the
* create-app-image mode or the create-installer mode.
* The add-launcher may be the same program with different configuration,
* or a completely different program created from the same files.
*
* There may be multiple add-launchers, each created by using the
* command line arg "--add-launcher <file path>
*
* The add-launcher properties file may have any of:
*
* appVersion
* module
* main-jar
* main-class
* icon
* arguments
* java-options
* win-console
* linux-app-category
*
*/
class AddLauncherArguments {
private final String name;
private final String filename;
private Map<String, String> allArgs;
private Map<String, ? super Object> bundleParams;
AddLauncherArguments(String name, String filename) {
this.name = name;
this.filename = filename;
}
private void initLauncherMap() {
if (bundleParams != null) {
return;
}
allArgs = Arguments.getPropertiesFromFile(filename);
allArgs.put(CLIOptions.NAME.getId(), name);
bundleParams = new HashMap<>();
String mainJar = getOptionValue(CLIOptions.MAIN_JAR);
String mainClass = getOptionValue(CLIOptions.APPCLASS);
String module = getOptionValue(CLIOptions.MODULE);
if (module != null && mainClass != null) {
Arguments.putUnlessNull(bundleParams, CLIOptions.MODULE.getId(),
module + "/" + mainClass);
} else if (module != null) {
Arguments.putUnlessNull(bundleParams, CLIOptions.MODULE.getId(),
module);
} else {
Arguments.putUnlessNull(bundleParams, CLIOptions.MAIN_JAR.getId(),
mainJar);
Arguments.putUnlessNull(bundleParams, CLIOptions.APPCLASS.getId(),
mainClass);
}
Arguments.putUnlessNull(bundleParams, CLIOptions.NAME.getId(),
getOptionValue(CLIOptions.NAME));
Arguments.putUnlessNull(bundleParams, CLIOptions.VERSION.getId(),
getOptionValue(CLIOptions.VERSION));
Arguments.putUnlessNull(bundleParams, CLIOptions.RELEASE.getId(),
getOptionValue(CLIOptions.RELEASE));
Arguments.putUnlessNull(bundleParams, CLIOptions.LINUX_CATEGORY.getId(),
getOptionValue(CLIOptions.LINUX_CATEGORY));
Arguments.putUnlessNull(bundleParams,
CLIOptions.WIN_CONSOLE_HINT.getId(),
getOptionValue(CLIOptions.WIN_CONSOLE_HINT));
String value = getOptionValue(CLIOptions.ICON);
Arguments.putUnlessNull(bundleParams, CLIOptions.ICON.getId(),
(value == null) ? null : Path.of(value));
// "arguments" and "java-options" even if value is null:
if (allArgs.containsKey(CLIOptions.ARGUMENTS.getId())) {
String argumentStr = getOptionValue(CLIOptions.ARGUMENTS);
bundleParams.put(CLIOptions.ARGUMENTS.getId(),
Arguments.getArgumentList(argumentStr));
}
if (allArgs.containsKey(CLIOptions.JAVA_OPTIONS.getId())) {
String jvmargsStr = getOptionValue(CLIOptions.JAVA_OPTIONS);
bundleParams.put(CLIOptions.JAVA_OPTIONS.getId(),
Arguments.getArgumentList(jvmargsStr));
}
}
private String getOptionValue(CLIOptions option) {
if (option == null || allArgs == null) {
return null;
}
String id = option.getId();
if (allArgs.containsKey(id)) {
return allArgs.get(id);
}
return null;
}
Map<String, ? super Object> getLauncherMap() {
initLauncherMap();
return bundleParams;
}
static Map<String, ? super Object> merge(
Map<String, ? super Object> original,
Map<String, ? super Object> additional, String... exclude) {
Map<String, ? super Object> tmp = new HashMap<>(original);
List.of(exclude).forEach(tmp::remove);
// remove LauncherData from map so it will be re-computed
tmp.remove(LAUNCHER_DATA.getID());
// remove "application-name" so it will be re-computed
tmp.remove(APP_NAME.getID());
if (additional.containsKey(CLIOptions.MODULE.getId())) {
tmp.remove(CLIOptions.MAIN_JAR.getId());
tmp.remove(CLIOptions.APPCLASS.getId());
} else if (additional.containsKey(CLIOptions.MAIN_JAR.getId())) {
tmp.remove(CLIOptions.MODULE.getId());
}
if (additional.containsKey(CLIOptions.ARGUMENTS.getId())) {
// if add launcher properties file contains "arguments", even with
// null value, disregard the "arguments" from command line
tmp.remove(CLIOptions.ARGUMENTS.getId());
}
if (additional.containsKey(CLIOptions.JAVA_OPTIONS.getId())) {
// same thing for java-options
tmp.remove(CLIOptions.JAVA_OPTIONS.getId());
}
tmp.putAll(additional);
return tmp;
}
}
⏎ jdk/jpackage/internal/AddLauncherArguments.java
Or download all of them as a single archive file:
File name: jdk.jpackage-17.0.5-src.zip File size: 92069 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jshell.jmod - JShell Tool
2023-08-03, ≈10🔥, 0💬
Popular Posts:
JDK 11 java.rmi.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) module. JDK 11 RMI m...
How to perform XML Schema validation with dom\Writer.java provided in the Apache Xerces package? You...
What Is mail.jar of JavaMail 1.3? I got the JAR file from javamail-1_3.zip. mail.jar in javamail-1_3...
Rhino JavaScript Java Library is an open-source implementation of JavaScript written entirely in Jav...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...