/
githubmirror
/
jdk22
Обзор
Документация
Войти
/
githubmirror
/
jdk22
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/jdk.jpackage/linux/classes/jdk/jpackage/internal/LinuxAppImageBuilder.java
135 строк
5 KB
Alexey Semenyuk
8277429: Conflicting jpackage static library name
22 ноя 2021, 21:04
22 ноя 2021, 21:04
e3911a8
Код
Авторство
О чём код?
/* * Copyright (c) 2015, 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.jpackage.internal; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import java.nio.file.Path; import java.text.MessageFormat; import java.util.List; import java.util.Map; import static jdk.jpackage.internal.StandardBundlerParam.APP_NAME; import static jdk.jpackage.internal.StandardBundlerParam.ICON; import static jdk.jpackage.internal.StandardBundlerParam.ADD_LAUNCHERS; public class LinuxAppImageBuilder extends AbstractAppImageBuilder { static final BundlerParamInfo<Path> ICON_PNG = new StandardBundlerParam<>( "icon.png", Path.class, params -> { Path f = ICON.fetchFrom(params); if (f != null && f.getFileName() != null && !f.getFileName() .toString().toLowerCase().endsWith(".png")) { Log.error(MessageFormat.format( I18N.getString("message.icon-not-png"), f)); return null; } return f; }, (s, p) -> Path.of(s)); static final String DEFAULT_ICON = "JavaApp.png"; LinuxAppImageBuilder(Path imageOutDir) { super(imageOutDir); } private void writeEntry(InputStream in, Path dstFile) throws IOException { Files.createDirectories(dstFile.getParent()); Files.copy(in, dstFile); } public static String getLauncherName(Map<String, ? super Object> params) { return APP_NAME.fetchFrom(params); } @Override public void prepareApplicationFiles(Map<String, ? super Object> params) throws IOException { appLayout.roots().stream().forEach(dir -> { try { IOUtils.writableOutputDir(dir); } catch (PackagerException pe) { throw new RuntimeException(pe); } }); // create the primary launcher createLauncherForEntryPoint(params, null); // create app launcher shared library createLauncherLib(); // create the additional launchers, if any List<Map<String, ? super Object>> entryPoints = ADD_LAUNCHERS.fetchFrom(params); for (Map<String, ? super Object> entryPoint : entryPoints) { createLauncherForEntryPoint(AddLauncherArguments.merge(params, entryPoint, ICON.getID(), ICON_PNG.getID()), params); } // Copy class path entries to Java folder copyApplication(params); } private void createLauncherLib() throws IOException { Path path = appLayout.pathGroup().getPath( ApplicationLayout.PathRole.LINUX_APPLAUNCHER_LIB); try (InputStream resource = getResourceAsStream("libjpackageapplauncheraux.so")) { writeEntry(resource, path); } path.toFile().setExecutable(true, false); path.toFile().setWritable(true, true); } private void createLauncherForEntryPoint(Map<String, ? super Object> params, Map<String, ? super Object> mainParams) throws IOException { // Copy executable to launchers folder Path executableFile = appLayout.launchersDirectory().resolve(getLauncherName(params)); try (InputStream is_launcher = getResourceAsStream("jpackageapplauncher")) { writeEntry(is_launcher, executableFile); } executableFile.toFile().setExecutable(true, false); executableFile.toFile().setWritable(true, true); writeCfgFile(params); var iconResource = createIconResource(DEFAULT_ICON, ICON_PNG, params, mainParams); if (iconResource != null) { Path iconTarget = appLayout.destktopIntegrationDirectory().resolve( APP_NAME.fetchFrom(params) + IOUtils.getSuffix(Path.of( DEFAULT_ICON))); iconResource.saveToFile(iconTarget); } } }