All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.izforge.izpack.panels.target.TargetPanelHelper Maven / Gradle / Ivy

There is a newer version: 5.2.2
Show newest version
/*
 * IzPack - Copyright 2001-2012 Julien Ponge, All Rights Reserved.
 *
 * http://izpack.org/
 * http://izpack.codehaus.org/
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.izforge.izpack.panels.target;

import com.izforge.izpack.api.data.InstallData;
import com.izforge.izpack.api.data.Pack;
import com.izforge.izpack.util.Platform;
import org.apache.commons.io.IOUtils;

import java.io.File;
import java.io.FileInputStream;
import java.io.ObjectInputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;


/**
 * Target panel helper methods.
 *
 * @author Tim Anderson
 */
public class TargetPanelHelper
{
    /**
     * Target panel directory variable name.
     */
    public static final String TARGET_PANEL_DIR = "TargetPanel.dir";

    /**
     * Target panel directory variable prefix.
     */
    private static final String PREFIX = TARGET_PANEL_DIR + ".";

    /**
     * The logger.
     */
    private static final Logger logger = Logger.getLogger(TargetPanelHelper.class.getName());

    /**
     * Returns the installation path for the current platform.
     * 

* This looks for a variable in the following order: *

    *
  1. {@code TargetPanel.dir.}
  2. *
  3. {@code TargetPanel.dir.}. This searches any parent platforms if none is found
  4. *
  5. {@code TargetPanel.dir}
  6. *
  7. {@code DEFAULT_INSTALL_PATH}
  8. *
  9. {@code SYSTEM_user_dir}
  10. *
* * @param installData the installation data * @return the default platform path, or {@code null} if none is found */ public static String getPath(InstallData installData) { String currentPath = installData.getInstallPath(); if (currentPath != null) { return currentPath; } String defaultPath = installData.getDefaultInstallPath(); if (defaultPath == null) { // Make the default path point to the current location defaultPath = System.getProperty("user.dir"); } String path = getTargetPanelDir(installData); if (path != null) { path = installData.getVariables().replace(path); } if (path == null && defaultPath != null) { path = installData.getVariables().replace(defaultPath); } return path; } /** * Determines if there is IzPack installation information at the specified path that is incompatible with the * current version of IzPack. *

* To be incompatible, the file {@link InstallData#INSTALLATION_INFORMATION} must exist in the supplied directory, * and not contain recognised {@link Pack} instances. * * @param dir the path to check * @param readInstallationInformation check .installationinformation file or skip it * @return {@code true} if there is incompatible installation information, * {@code false} if there is no installation info, or it is compatible */ @SuppressWarnings("unchecked") public static boolean isIncompatibleInstallation(String dir, Boolean readInstallationInformation) { boolean result = false; File file = new File(dir, InstallData.INSTALLATION_INFORMATION); if (file.exists() && readInstallationInformation) { FileInputStream input = null; ObjectInputStream objectInput = null; try { input = new FileInputStream(file); objectInput = new ObjectInputStream(input); List packs = (List) objectInput.readObject(); for (Object pack : packs) { if (!(pack instanceof Pack)) { return true; } } } catch (Throwable exception) { logger.log(Level.FINE, "Installation information at path=" + file.getPath() + " failed to deserialize", exception); result = true; } finally { IOUtils.closeQuietly(objectInput); IOUtils.closeQuietly(input); } } return result; } /** * Returns the installation path for the current platform. *

* This looks for a variable prefixed with {@code TargetPanel.dir} in the following order: *

    *
  1. {@code TargetPanel.dir.}
  2. *
  3. {@code TargetPanel.dir.}. This searches any parent platforms if none is found
  4. *
  5. {@code TargetPanel.dir}
  6. *
* * @param installData the installation data * @return the default platform path, or {@code null} if none is found */ private static String getTargetPanelDir(InstallData installData) { Platform platform = installData.getPlatform(); String path = null; if (platform.getSymbolicName() != null) { path = installData.getVariable(PREFIX + platform.getSymbolicName().toLowerCase()); } if (path == null) { path = getTargetPanelDir(installData, platform.getName()); } if (path == null) { path = installData.getVariable(TARGET_PANEL_DIR); } return path; } /** * Returns the installation path for the specified platform name. *

* This looks for a variable named {@code TargetPanel.dir.}. If none is found, it searches the * parent platforms, in a breadth-first manner. * * @param installData the installation data * @param name the platform name * @return the default path, or {@code null} if none is found */ private static String getTargetPanelDir(InstallData installData, Platform.Name name) { String path = null; List queue = new ArrayList(); queue.add(name); while (!queue.isEmpty()) { name = queue.remove(0); path = installData.getVariable(PREFIX + name.toString().toLowerCase()); if (path != null) { break; } Collections.addAll(queue, name.getParents()); } return path; } }