/*
 * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package jdk.incubator.jpackage.internal;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Stream;
import static jdk.incubator.jpackage.internal.StandardBundlerParam.*;

App launcher's config file.
/** * App launcher's config file. */
final class CfgFile { CfgFile() { appLayout = ApplicationLayout.platformAppImage(); } CfgFile initFromParams(Map<String, ? super Object> params) { launcherData = StandardBundlerParam.LAUNCHER_DATA.fetchFrom(params); launcherName = StandardBundlerParam.APP_NAME.fetchFrom(params); javaOptions = JAVA_OPTIONS.fetchFrom(params); arguments = ARGUMENTS.fetchFrom(params); return this; } void create(Path appImage) throws IOException { List<Map.Entry<String, Object>> content = new ArrayList<>(); ApplicationLayout appCfgLayout = createAppCfgLayout(); content.add(Map.entry("[Application]", SECTION_TAG)); if (launcherData.isModular()) { content.add(Map.entry("app.mainmodule", launcherData.moduleName() + "/" + launcherData.qualifiedClassName())); } else { // If the app is contained in an unnamed jar then launch it the // legacy way and the main class string must be // of the format com/foo/Main if (launcherData.mainJarName() != null) { content.add(Map.entry("app.classpath", appCfgLayout.appDirectory().resolve( launcherData.mainJarName()))); } content.add(Map.entry("app.mainclass", launcherData.qualifiedClassName())); } for (var value : launcherData.classPath()) { content.add(Map.entry("app.classpath", appCfgLayout.appDirectory().resolve(value).toString())); } ApplicationLayout appImagelayout = appLayout.resolveAt(appImage); Path modsDir = appImagelayout.appModsDirectory(); if (!javaOptions.isEmpty() || Files.isDirectory(modsDir)) { content.add(Map.entry("[JavaOptions]", SECTION_TAG)); for (var value : javaOptions) { content.add(Map.entry("java-options", value)); } content.add(Map.entry("java-options", "--module-path")); content.add(Map.entry("java-options", appCfgLayout.appModsDirectory())); } if (!arguments.isEmpty()) { content.add(Map.entry("[ArgOptions]", SECTION_TAG)); for (var value : arguments) { content.add(Map.entry("arguments", value)); } } Path cfgFile = appImagelayout.appDirectory().resolve(launcherName + ".cfg"); Files.createDirectories(cfgFile.getParent()); boolean[] addLineBreakAtSection = new boolean[1]; Stream<String> lines = content.stream().map(entry -> { if (entry.getValue() == SECTION_TAG) { if (!addLineBreakAtSection[0]) { addLineBreakAtSection[0] = true; return entry.getKey(); } return "\n" + entry.getKey(); } return entry.getKey() + "=" + entry.getValue(); }); Files.write(cfgFile, (Iterable<String>) lines::iterator); } private ApplicationLayout createAppCfgLayout() { ApplicationLayout appCfgLayout = appLayout.resolveAt(Path.of("$ROOTDIR")); appCfgLayout.pathGroup().setPath(ApplicationLayout.PathRole.APP, Path.of("$APPDIR")); appCfgLayout.pathGroup().setPath(ApplicationLayout.PathRole.MODULES, appCfgLayout.appDirectory().resolve(appCfgLayout.appModsDirectory().getFileName())); return appCfgLayout; } private String launcherName; private LauncherData launcherData; List<String> arguments; List<String> javaOptions; private final ApplicationLayout appLayout; private final static Object SECTION_TAG = new Object(); }