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

com.izforge.izpack.installer.bootstrap.InstallerGui Maven / Gradle / Ivy

There is a newer version: 5.2.3
Show newest version
/*
 * IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
 *
 * http://izpack.org/
 * http://izpack.codehaus.org/
 *
 * Copyright 2003 Jonathan Halliday
 *
 * 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.installer.bootstrap;

import com.izforge.izpack.api.container.Container;
import com.izforge.izpack.api.data.InstallData;
import com.izforge.izpack.api.exception.IzPackException;
import com.izforge.izpack.installer.container.impl.GUIInstallerContainer;
import com.izforge.izpack.installer.container.impl.InstallerContainer;
import com.izforge.izpack.installer.gui.InstallerController;
import com.izforge.izpack.installer.gui.SplashScreen;
import com.izforge.izpack.installer.language.LanguageDialog;
import com.izforge.izpack.installer.requirement.RequirementsChecker;
import com.izforge.izpack.util.Housekeeper;

import java.util.logging.Logger;

import javax.swing.*;

/**
 * Gui-dedicated installer bootstrap
 */
public class InstallerGui
{
    private static final Logger logger = Logger.getLogger(InstallerGui.class.getName());
    
    public static void run(final String langCode, final String mediaPath) throws Exception
    {
        final InstallerContainer applicationComponent = new GUIInstallerContainer();
        final Container installerContainer = applicationComponent.getComponent(Container.class);

        SwingUtilities.invokeLater(new Runnable()
        {
            public void run()
            {
                try
                {
                    final SplashScreen splashScreen = installerContainer.getComponent(SplashScreen.class);
                    splashScreen.displaySplashScreen();

                    if (mediaPath != null)
                    {
                        InstallData installData = applicationComponent.getComponent(InstallData.class);
                        installData.setMediaPath(mediaPath);
                    }

                    InstallerController controller = installerContainer.getComponent(InstallerController.class);
                    splashScreen.removeSplashScreen();
                    if (langCode == null)
                    {
                      installerContainer.getComponent(LanguageDialog.class).initLangPack();
                    }
                    else
                    {
                      installerContainer.getComponent(LanguageDialog.class).propagateLocale(langCode);
                    }
                    if (!installerContainer.getComponent(RequirementsChecker.class).check())
                    {
                        logger.info("Not all installer requirements are fulfilled.");
                        installerContainer.getComponent(Housekeeper.class).shutDown(-1);
                    }
                    controller.buildInstallation().launchInstallation();
                }
                catch (Exception e)
                {
                    throw new IzPackException(e);
                }
            }
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy