/* * This file is part of ELKI: * Environment for Developing KDD-Applications Supported by Index-Structures * * Copyright (C) 2017 * ELKI Development Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package de.lmu.ifi.dbs.elki.gui.multistep; import java.awt.Dimension; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.io.FileNotFoundException; import java.io.IOException; import java.util.ArrayList; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JScrollPane; import javax.swing.JTabbedPane; import de.lmu.ifi.dbs.elki.KDDTask; import de.lmu.ifi.dbs.elki.application.AbstractApplication; import de.lmu.ifi.dbs.elki.gui.GUIUtil; import de.lmu.ifi.dbs.elki.gui.minigui.MiniGUI; import de.lmu.ifi.dbs.elki.gui.multistep.panels.AlgorithmTabPanel; import de.lmu.ifi.dbs.elki.gui.multistep.panels.EvaluationTabPanel; import de.lmu.ifi.dbs.elki.gui.multistep.panels.InputTabPanel; import de.lmu.ifi.dbs.elki.gui.multistep.panels.LoggingTabPanel; import de.lmu.ifi.dbs.elki.gui.multistep.panels.OutputTabPanel; import de.lmu.ifi.dbs.elki.gui.multistep.panels.SavedSettingsTabPanel; import de.lmu.ifi.dbs.elki.gui.util.LogPanel; import de.lmu.ifi.dbs.elki.gui.util.SavedSettingsFile; import de.lmu.ifi.dbs.elki.logging.CLISmartHandler; import de.lmu.ifi.dbs.elki.logging.Logging; import de.lmu.ifi.dbs.elki.logging.LoggingConfiguration; import de.lmu.ifi.dbs.elki.utilities.Alias; import de.lmu.ifi.dbs.elki.utilities.optionhandling.parameterization.ListParameterization; import de.lmu.ifi.dbs.elki.utilities.optionhandling.parameterization.Parameterization; import de.lmu.ifi.dbs.elki.utilities.optionhandling.parameterization.SerializedParameterization; import de.lmu.ifi.dbs.elki.workflow.OutputStep; /** * Experimenter-style multi step GUI. * * @author Erich Schubert * @since 0.4.0 * * @apiviz.landmark * @apiviz.composedOf AlgorithmTabPanel * @apiviz.composedOf EvaluationTabPanel * @apiviz.composedOf InputTabPanel * @apiviz.composedOf LoggingTabPanel * @apiviz.composedOf OutputTabPanel * @apiviz.composedOf SavedSettingsTabPanel */ @Alias({ "multi", "multigui", "multistepgui" }) public class MultiStepGUI extends AbstractApplication { /** * ELKI logger for the GUI */ private static final Logging LOG = Logging.getLogger(MultiStepGUI.class); /** * The frame */ JFrame frame; /** * Logging output area. */ protected LogPanel outputArea; /** * Input panel. */ private InputTabPanel inputTab; /** * Algorithm panel. */ private AlgorithmTabPanel algTab; /** * Evaluation panel. */ private EvaluationTabPanel evalTab; /** * Output panel. */ private OutputTabPanel outTab; /** * Logging panel. */ private LoggingTabPanel logTab; /** * Saved settingspanel. */ private SavedSettingsTabPanel setTab; /** * Constructor */ public MultiStepGUI() { super(); frame = new JFrame("ELKI ExpGUI"); frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE); try { frame.setIconImage(new ImageIcon(KDDTask.class.getResource("elki-icon.png")).getImage()); } catch(Exception e) { // Ignore - icon not found is not fatal. } frame.setLayout(new GridBagLayout()); { // setup text output area outputArea = new LogPanel(); // Create the scroll pane and add the table to it. JScrollPane outputPane = new JScrollPane(outputArea); outputPane.setPreferredSize(new Dimension(800, 400)); // Add the output pane to the bottom GridBagConstraints constraints = new GridBagConstraints(); constraints.fill = GridBagConstraints.BOTH; constraints.gridx = 0; constraints.gridy = 1; constraints.weightx = 1; constraints.weighty = 1; frame.add(outputPane, constraints); // reconfigure logging outputArea.becomeDefaultLogger(); } { // setup tabbed panels JTabbedPane panels = new JTabbedPane(); // Add the output pane to the bottom GridBagConstraints constraints = new GridBagConstraints(); constraints.fill = GridBagConstraints.BOTH; constraints.gridx = 0; constraints.gridy = 0; constraints.weightx = 1; constraints.weighty = 1; frame.add(panels, constraints); addPanels(panels); } frame.pack(); } private void addPanels(JTabbedPane panels) { SavedSettingsFile settings = new SavedSettingsFile(MiniGUI.SAVED_SETTINGS_FILENAME); try { settings.load(); } catch(FileNotFoundException e) { LOG.warning("Error loading saved settings.", e); } catch(IOException e) { LOG.exception(e); } inputTab = new InputTabPanel(); algTab = new AlgorithmTabPanel(inputTab); evalTab = new EvaluationTabPanel(inputTab, algTab); outTab = new OutputTabPanel(inputTab, evalTab); logTab = new LoggingTabPanel(); setTab = new SavedSettingsTabPanel(settings, this); panels.addTab("Input", inputTab); panels.addTab("Algorithm", algTab); panels.addTab("Evaluation", evalTab); panels.addTab("Output", outTab); panels.addTab("Logging", logTab); panels.addTab("Saved Settings", setTab); setParameters(new ListParameterization()); } /** * Set the parameters. * * @param config Parameterization */ public void setParameters(Parameterization config) { // Clear errors after each step, so they don't consider themselves failed // because of earlier errors. logTab.setParameters(config); // config.clearErrors(); inputTab.setParameters(config); // config.clearErrors(); algTab.setParameters(config); // config.clearErrors(); evalTab.setParameters(config); // config.clearErrors(); outTab.setParameters(config); // config.clearErrors(); } /** * Get the serialized parameters * * @return Serialized parameters */ public ArrayList<String> serializeParameters() { ListParameterization params = new ListParameterization(); logTab.appendParameters(params); inputTab.appendParameters(params); algTab.appendParameters(params); evalTab.appendParameters(params); outTab.appendParameters(params); return params.serialize(); } @Override public void run() { frame.setVisible(true); outputArea.becomeDefaultLogger(); } /** * Main method that just spawns the UI. * * @param args command line parameters */ public static void main(final String[] args) { GUIUtil.logUncaughtExceptions(LOG); GUIUtil.setLookAndFeel(); OutputStep.setDefaultHandlerVisualizer(); javax.swing.SwingUtilities.invokeLater(new Runnable() { @Override public void run() { try { final MultiStepGUI gui = new MultiStepGUI(); gui.run(); if(args != null && args.length > 0) { gui.setParameters(new SerializedParameterization(args)); } else { gui.setParameters(new SerializedParameterization()); } } catch(Exception | Error e) { // Restore error handler, as the GUI is likely broken. LoggingConfiguration.replaceDefaultHandler(new CLISmartHandler()); LOG.exception(e); } } }); } }