com.izforge.izpack.installer.container.provider.ConsoleInstallDataProvider Maven / Gradle / Ivy
/*
* Copyright 2016 Julien Ponge, René Krell and the IzPack team.
*
* 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.container.provider;
import com.izforge.izpack.api.data.ConsolePrefs;
import com.izforge.izpack.api.resource.Locales;
import com.izforge.izpack.api.resource.Resources;
import com.izforge.izpack.core.data.DefaultVariables;
import com.izforge.izpack.installer.data.ConsoleInstallData;
import com.izforge.izpack.util.Housekeeper;
import com.izforge.izpack.util.PlatformModelMatcher;
public class ConsoleInstallDataProvider extends AbstractInstallDataProvider
{
public ConsoleInstallData provide(Resources resources, Locales locales, DefaultVariables variables,
Housekeeper housekeeper, PlatformModelMatcher matcher)
throws Exception
{
final ConsoleInstallData consoleInstallData = new ConsoleInstallData(variables, matcher.getCurrentPlatform());
loadInstallData(consoleInstallData, resources, matcher, housekeeper);
loadConsoleInstallData(consoleInstallData, resources);
loadInstallerRequirements(consoleInstallData, resources);
loadDynamicVariables(variables, consoleInstallData, resources);
loadDynamicConditions(consoleInstallData, resources);
loadDefaultLocale(consoleInstallData, locales);
// Load custom langpack if exist.
AbstractInstallDataProvider.addCustomLangpack(consoleInstallData, locales);
return consoleInstallData;
}
/**
* Load GUI preference information.
*
* @param installData the console installation data
* @throws Exception
*/
private void loadConsoleInstallData(ConsoleInstallData installData, Resources resources) throws Exception
{
installData.consolePrefs = (ConsolePrefs) resources.getObject("ConsolePrefs");
}
}