All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.izforge.izpack.panels.process.ProcessConsolePanel Maven / Gradle / Ivy
package com.izforge.izpack.panels.process;
import com.izforge.izpack.api.data.InstallData;
import com.izforge.izpack.api.handler.Prompt;
import com.izforge.izpack.api.handler.Prompt.Type;
import com.izforge.izpack.api.resource.Resources;
import com.izforge.izpack.api.rules.RulesEngine;
import com.izforge.izpack.core.handler.PromptUIHandler;
import com.izforge.izpack.installer.console.AbstractConsolePanel;
import com.izforge.izpack.installer.console.ConsolePanel;
import com.izforge.izpack.installer.panel.PanelView;
import com.izforge.izpack.util.Console;
import com.izforge.izpack.util.PlatformModelMatcher;
import java.io.PrintWriter;
import java.util.Properties;
public class ProcessConsolePanel extends AbstractConsolePanel implements ConsolePanel, AbstractUIProcessHandler
{
private RulesEngine rules;
private Resources resources;
private Prompt prompt;
private PromptUIHandler handler;
/**
* The platform-model matcher.
*/
private final PlatformModelMatcher matcher;
private int noOfJobs = 0;
private int currentJob = 0;
public ProcessConsolePanel(RulesEngine rules, Resources resources, Prompt prompt, PlatformModelMatcher matcher,
PanelView panel)
{
super(panel);
this.rules = rules;
this.resources = resources;
this.prompt = prompt;
handler = new PromptUIHandler(prompt);
this.matcher = matcher;
}
public void emitNotification(String message)
{
handler.emitNotification(message);
}
public boolean emitWarning(String title, String message)
{
return handler.emitWarning(title, message);
}
public void emitError(String title, String message)
{
handler.emitError(title, message);
}
public void emitErrorAndBlockNext(String title, String message)
{
emitError(title, message);
}
public int askQuestion(String title, String question, int choices)
{
return handler.askQuestion(title, question, choices);
}
public int askQuestion(String title, String question, int choices, int default_choice)
{
return handler.askQuestion(title, question, choices, default_choice);
}
@Override
public int askWarningQuestion(String title, String question, int choices, int default_choice)
{
return 0;
}
public void logOutput(String message, boolean stderr)
{
if (stderr)
{
prompt.message(Type.ERROR, message);
}
else
{
prompt.message(Type.INFORMATION, message);
}
}
public void startProcessing(int no_of_processes)
{
logOutput("[ Starting processing ]", false);
this.noOfJobs = no_of_processes;
}
public void startProcess(String name)
{
this.currentJob++;
logOutput("Starting process " + name + " (" + Integer.toString(this.currentJob)
+ "/" + Integer.toString(this.noOfJobs) + ")", false);
}
public void finishProcess()
{
// TODO Auto-generated method stub
}
public void finishProcessing(boolean unlockPrev, boolean unlockNext)
{
// TODO Auto-generated method stub
}
public boolean generateOptions(InstallData installData,
PrintWriter printWriter)
{
// TODO finish this
return false;
}
public boolean run(InstallData installData, Properties p)
{
return run(installData);
}
public boolean run(InstallData installData, Console console)
{
printHeadLine(installData, console);
return run(installData);
}
private boolean run(InstallData installData)
{
ProcessPanelWorker worker = new ProcessPanelWorker(installData, rules, resources, matcher);
worker.setHandler(this);
worker.run();
return worker.getResult();
}
}