1 /*
   2  * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jpackage.internal;
  27 
  28 import java.io.File;
  29 import java.io.IOException;
  30 import java.net.MalformedURLException;
  31 import java.net.URL;
  32 import java.text.MessageFormat;
  33 import java.util.Arrays;
  34 import java.util.Collection;
  35 import java.util.Map;
  36 import java.util.ResourceBundle;
  37 
  38 import static jdk.jpackage.internal.StandardBundlerParam.*;
  39 
  40 public class LinuxAppBundler extends AbstractImageBundler {
  41 
  42     private static final ResourceBundle I18N = ResourceBundle.getBundle(
  43             "jdk.jpackage.internal.resources.LinuxResources");
  44 
  45     static final BundlerParamInfo<File> ICON_PNG =
  46             new StandardBundlerParam<>(
  47             "icon.png",
  48             File.class,
  49             params -> {
  50                 File f = ICON.fetchFrom(params);
  51                 if (f != null && !f.getName().toLowerCase().endsWith(".png")) {
  52                     Log.error(MessageFormat.format(
  53                             I18N.getString("message.icon-not-png"), f));
  54                     return null;
  55                 }
  56                 return f;
  57             },
  58             (s, p) -> new File(s));
  59 
  60     static final BundlerParamInfo<String> LINUX_INSTALL_DIR =
  61             new StandardBundlerParam<>(
  62             "linux-install-dir",
  63             String.class,
  64             params -> {
  65                  String dir = INSTALL_DIR.fetchFrom(params);
  66                  if (dir != null) {
  67                      if (dir.endsWith("/")) {
  68                          dir = dir.substring(0, dir.length()-1);
  69                      }
  70                      return dir;
  71                  }
  72                  return "/opt";
  73              },
  74             (s, p) -> s
  75     );
  76 
  77     static final BundlerParamInfo<String> LINUX_PACKAGE_DEPENDENCIES =
  78             new StandardBundlerParam<>(
  79             Arguments.CLIOptions.LINUX_PACKAGE_DEPENDENCIES.getId(),
  80             String.class,
  81             params -> {
  82                  return "";
  83              },
  84             (s, p) -> s
  85     );
  86 
  87     @Override
  88     public boolean validate(Map<String, ? super Object> params)
  89             throws ConfigException {
  90         try {
  91             if (params == null) throw new ConfigException(
  92                     I18N.getString("error.parameters-null"),
  93                     I18N.getString("error.parameters-null.advice"));
  94 
  95             return doValidate(params);
  96         } catch (RuntimeException re) {
  97             if (re.getCause() instanceof ConfigException) {
  98                 throw (ConfigException) re.getCause();
  99             } else {
 100                 throw new ConfigException(re);
 101             }
 102         }
 103     }
 104 
 105     private boolean doValidate(Map<String, ? super Object> params)
 106             throws ConfigException {
 107 
 108         imageBundleValidation(params);
 109 
 110         return true;
 111     }
 112 
 113     File doBundle(Map<String, ? super Object> params, File outputDirectory,
 114             boolean dependentTask) throws PackagerException {
 115         if (StandardBundlerParam.isRuntimeInstaller(params)) {
 116             return PREDEFINED_RUNTIME_IMAGE.fetchFrom(params);
 117         } else {
 118             return doAppBundle(params, outputDirectory, dependentTask);
 119         }
 120     }
 121 
 122     private File doAppBundle(Map<String, ? super Object> params,
 123             File outputDirectory, boolean dependentTask)
 124             throws PackagerException {
 125         try {
 126             File rootDirectory = createRoot(params, outputDirectory,
 127                     dependentTask, APP_NAME.fetchFrom(params));
 128             AbstractAppImageBuilder appBuilder = new LinuxAppImageBuilder(
 129                     params, outputDirectory.toPath());
 130             if (PREDEFINED_RUNTIME_IMAGE.fetchFrom(params) == null ) {
 131                 JLinkBundlerHelper.execute(params, appBuilder);
 132             } else {
 133                 StandardBundlerParam.copyPredefinedRuntimeImage(
 134                         params, appBuilder);
 135             }
 136             return rootDirectory;
 137         } catch (PackagerException pe) {
 138             throw pe;
 139         } catch (Exception ex) {
 140             Log.verbose(ex);
 141             throw new PackagerException(ex);
 142         }
 143     }
 144 
 145     @Override
 146     public String getName() {
 147         return I18N.getString("app.bundler.name");
 148     }
 149 
 150     @Override
 151     public String getID() {
 152         return "linux.app";
 153     }
 154 
 155     @Override
 156     public String getBundleType() {
 157         return "IMAGE";
 158     }
 159 
 160     @Override
 161     public File execute(Map<String, ? super Object> params,
 162             File outputParentDir) throws PackagerException {
 163         return doBundle(params, outputParentDir, false);
 164     }
 165 
 166     @Override
 167     public boolean supported(boolean runtimeInstaller) {
 168         return true;
 169     }
 170 
 171     @Override
 172     public boolean isDefault() {
 173         return false;
 174     }
 175 
 176 }