add look & feel selector into configuration dialog
[jSite2.git] / src / net / pterodactylus / jsite / gui / SwingInterface.java
index d00ebe1..dff6f3a 100644 (file)
@@ -25,11 +25,23 @@ import java.io.FileInputStream;
 import java.io.FileOutputStream;
 import java.io.IOException;
 import java.util.ArrayList;
+import java.util.Collections;
+import java.util.HashMap;
 import java.util.List;
 import java.util.Locale;
+import java.util.Map;
 import java.util.Properties;
-
+import java.util.concurrent.Executor;
+import java.util.concurrent.Executors;
+import java.util.logging.Level;
+import java.util.logging.LogRecord;
+import java.util.logging.Logger;
+
+import javax.swing.AbstractAction;
+import javax.swing.Action;
 import javax.swing.JOptionPane;
+import javax.swing.UIManager;
+import javax.swing.UnsupportedLookAndFeelException;
 
 import net.pterodactylus.jsite.core.Core;
 import net.pterodactylus.jsite.core.CoreListener;
@@ -38,6 +50,8 @@ import net.pterodactylus.jsite.core.Project;
 import net.pterodactylus.jsite.i18n.I18n;
 import net.pterodactylus.jsite.i18n.gui.I18nAction;
 import net.pterodactylus.util.io.Closer;
+import net.pterodactylus.util.logging.Logging;
+import net.pterodactylus.util.logging.LoggingListener;
 
 /**
  * The Swing user interface.
@@ -45,7 +59,10 @@ import net.pterodactylus.util.io.Closer;
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  * @version $Id$
  */
-public class SwingInterface implements CoreListener {
+public class SwingInterface implements CoreListener, LoggingListener {
+
+       /** The logger. */
+       private static final Logger logger = Logging.getLogger(SwingInterface.class.getName());
 
        /** The application core. */
        private final Core core;
@@ -56,6 +73,12 @@ public class SwingInterface implements CoreListener {
        /** The main window. */
        private MainWindow mainWindow;
 
+       /** Thread pool. */
+       private Executor threadPool = Executors.newCachedThreadPool();
+
+       /** The logger window. */
+       private LogWindow logWindow;
+
        /** The “configure” action. */
        private I18nAction configureAction;
 
@@ -68,12 +91,30 @@ public class SwingInterface implements CoreListener {
        /** The “manage nodes” action. */
        private I18nAction manageNodesAction;
 
-       /** The “connect to node” action. */
+       /** The “connect to node” (simple mode) action. */
        private I18nAction nodeConnectAction;
 
-       /** The “disconnect from node” action. */
+       /** The “disconnect from node” (simple mode) action. */
        private I18nAction nodeDisconnectAction;
 
+       /** All node menu items. */
+       private List<Action> nodeConnectActions = Collections.synchronizedList(new ArrayList<Action>());
+
+       /** Mapping from nodes to node connect actions. */
+       private Map<Node, Action> nodeNodeConnectActions = Collections.synchronizedMap(new HashMap<Node, Action>());
+
+       /** Mapping from node connect actions to nodes. */
+       private Map<Action, Node> nodeConnectActionNodes = Collections.synchronizedMap(new HashMap<Action, Node>());
+
+       /** All node disconnect actions. */
+       private List<Action> nodeDisconnectActions = Collections.synchronizedList(new ArrayList<Action>());
+
+       /** Mapping from nodes to node disconnect actions. */
+       private Map<Node, Action> nodeNodeDisconnectActions = Collections.synchronizedMap(new HashMap<Node, Action>());
+
+       /** Mapping from node disconnect actions to nodes. */
+       private Map<Action, Node> nodeDisconnectActionNodes = Collections.synchronizedMap(new HashMap<Action, Node>());
+
        /** The node manager dialog. */
        private ManageNodesDialog manageNodesDialog;
 
@@ -105,8 +146,20 @@ public class SwingInterface implements CoreListener {
        // CONFIGURATION
        //
 
-       /** Whether to beautify the GUI. */
-       private boolean beautify;
+       /** The advanced mode. */
+       private boolean advancedMode;
+
+       /** Whether to antialias the GUI. */
+       private boolean antialias;
+
+       /** The control font. */
+       private String controlFont;
+
+       /** The user font. */
+       private String userFont;
+
+       /** The class name of the look and feel. */
+       private String lookAndFeel;
 
        /**
         * Creates a new swing interface.
@@ -121,13 +174,33 @@ public class SwingInterface implements CoreListener {
                this.configDirectory = configDirectory;
                I18n.setLocale(Locale.ENGLISH);
                loadConfig();
-               if (beautify) {
+               if (lookAndFeel != null) {
+                       try {
+                               UIManager.setLookAndFeel(lookAndFeel);
+                       } catch (ClassNotFoundException cnfe1) {
+                               logger.log(Level.WARNING, "could not load look and feel", cnfe1);
+                       } catch (InstantiationException ie1) {
+                               logger.log(Level.WARNING, "could not load look and feel", ie1);
+                       } catch (IllegalAccessException iae1) {
+                               logger.log(Level.WARNING, "could not load look and feel", iae1);
+                       } catch (UnsupportedLookAndFeelException ulafe1) {
+                               logger.log(Level.WARNING, "could not load look and feel", ulafe1);
+                       }
+               }
+               if (antialias) {
                        System.setProperty("swing.aatext", "true");
-                       System.setProperty("swing.plaf.metal.controlFont", "Tahoma");
-                       System.setProperty("swing.plaf.metal.userFont", "Tahoma");
+               }
+               if (controlFont != null) {
+                       System.setProperty("swing.plaf.metal.controlFont", controlFont);
+               }
+               if (userFont != null) {
+                       System.setProperty("swing.plaf.metal.userFont", userFont);
                }
                initActions();
                initDialogs();
+               mainWindow = new MainWindow(this);
+               mainWindow.setAdvancedMode(advancedMode);
+               logWindow = new LogWindow();
        }
 
        //
@@ -153,6 +226,16 @@ public class SwingInterface implements CoreListener {
        }
 
        /**
+        * Returns whether the advanced mode is activated.
+        * 
+        * @return <code>true</code> if the advanced mode is activated,
+        *         <code>false</code> if the simple mode is activated
+        */
+       boolean isAdvancedMode() {
+               return advancedMode;
+       }
+
+       /**
         * Returns the “configure” action.
         * 
         * @return The “configure” action
@@ -198,6 +281,15 @@ public class SwingInterface implements CoreListener {
        }
 
        /**
+        * Returns all “connect node” actions.
+        * 
+        * @return All “connect node” actions
+        */
+       List<Action> getNodeConnectActions() {
+               return nodeConnectActions;
+       }
+
+       /**
         * Returns the “disconnect from node” action.
         * 
         * @return The “disconnect from node” action
@@ -207,6 +299,15 @@ public class SwingInterface implements CoreListener {
        }
 
        /**
+        * Returns all “disconnect node” actions.
+        * 
+        * @return All “disconnect node” action
+        */
+       List<Action> getNodeDisconnectActions() {
+               return nodeDisconnectActions;
+       }
+
+       /**
         * Returns all language actions.
         * 
         * @return All language actions
@@ -259,13 +360,6 @@ public class SwingInterface implements CoreListener {
        // SERVICE METHODS
        //
 
-       /**
-        * Starts the interface.
-        */
-       public void start() {
-               mainWindow = new MainWindow(this);
-       }
-
        //
        // PRIVATE METHODS
        //
@@ -275,7 +369,7 @@ public class SwingInterface implements CoreListener {
         */
        private void loadConfig() {
                /* initialize default stuff. */
-               beautify = false;
+               antialias = false;
                /* now read config. */
                File configFile = new File(configDirectory, "swing-interface.properties");
                if (!configFile.exists() || !configFile.canRead() || !configFile.isFile()) {
@@ -292,8 +386,23 @@ public class SwingInterface implements CoreListener {
                } finally {
                        Closer.close(configInputStream);
                }
-               if (configProperties.containsKey("beautify")) {
-                       beautify = Boolean.valueOf(configProperties.getProperty("beautify"));
+               if (configProperties.containsKey("advancedMode")) {
+                       advancedMode = Boolean.valueOf(configProperties.getProperty("advancedMode"));
+               }
+               if (configProperties.containsKey("antialias")) {
+                       antialias = Boolean.valueOf(configProperties.getProperty("antialias"));
+               }
+               if (configProperties.containsKey("controlFont")) {
+                       controlFont = configProperties.getProperty("controlFont");
+               }
+               if (configProperties.containsKey("userFont")) {
+                       userFont = configProperties.getProperty("userFont");
+               }
+               if (configProperties.containsKey("lookAndFeel")) {
+                       lookAndFeel = configProperties.getProperty("lookAndFeel");
+               }
+               if (configProperties.containsKey("language")) {
+                       I18n.setLocale(new Locale(configProperties.getProperty("language")));
                }
        }
 
@@ -314,7 +423,18 @@ public class SwingInterface implements CoreListener {
                }
                File configFile = new File(configDirectory, "swing-interface.properties");
                Properties configProperties = new Properties();
-               configProperties.setProperty("beautify", String.valueOf(beautify));
+               configProperties.setProperty("advancedMode", String.valueOf(advancedMode));
+               configProperties.setProperty("antialias", String.valueOf(antialias));
+               if (controlFont != null) {
+                       configProperties.setProperty("controlFont", controlFont);
+               }
+               if (userFont != null) {
+                       configProperties.setProperty("userFont", userFont);
+               }
+               if (lookAndFeel != null) {
+                       configProperties.setProperty("lookAndFeel", lookAndFeel);
+               }
+               configProperties.setProperty("language", I18n.getLocale().getLanguage());
                FileOutputStream configOutputStream = null;
                try {
                        configOutputStream = new FileOutputStream(configFile);
@@ -374,7 +494,11 @@ public class SwingInterface implements CoreListener {
 
                        @SuppressWarnings("synthetic-access")
                        public void actionPerformed(ActionEvent actionEvent) {
-                               nodeConnect();
+                               List<Node> nodes = core.getNodes();
+                               if (nodes.isEmpty()) {
+                                       return;
+                               }
+                               nodeConnect(nodes.get(0));
                        }
 
                };
@@ -385,9 +509,14 @@ public class SwingInterface implements CoreListener {
                         */
                        @SuppressWarnings("synthetic-access")
                        public void actionPerformed(ActionEvent e) {
-                               nodeDisconnect();
+                               List<Node> nodes = core.getNodes();
+                               if (nodes.isEmpty()) {
+                                       return;
+                               }
+                               nodeDisconnect(nodes.get(0));
                        }
                };
+               rebuildNodeActions(core.getNodes());
                List<Locale> availableLanguages = I18n.findAvailableLanguages();
                for (final Locale locale: availableLanguages) {
                        I18nAction languageAction = new I18nAction("general.language." + locale.getLanguage()) {
@@ -462,10 +591,22 @@ public class SwingInterface implements CoreListener {
         * Shows the configuration dialog.
         */
        private void configure() {
-               configurationDialog.setBeautify(beautify);
+               configurationDialog.setAdvancedMode(advancedMode);
+               configurationDialog.setAntialias(antialias);
+               configurationDialog.setControlFont(controlFont);
+               configurationDialog.setUserFont(userFont);
+               configurationDialog.setLookAndFeel(lookAndFeel);
                configurationDialog.setVisible(true);
                if (!configurationDialog.wasCancelled()) {
-                       beautify = configurationDialog.getBeautify();
+                       advancedMode = configurationDialog.isAdvancedMode();
+                       if (!advancedMode && (nodeList.size() > 1)) {
+                               JOptionPane.showMessageDialog(mainWindow, I18n.get("mainWindow.warning.multipleNodesNotAdvancedMode.message"), I18n.get("mainWindow.warning.multipleNodesNotAdvancedMode.title"), JOptionPane.WARNING_MESSAGE);
+                       }
+                       mainWindow.setAdvancedMode(advancedMode);
+                       antialias = configurationDialog.isAntialias();
+                       controlFont = configurationDialog.getControlFont();
+                       userFont = configurationDialog.getUserFont();
+                       lookAndFeel = configurationDialog.getLookAndFeel();
                        saveConfig();
                }
        }
@@ -474,6 +615,7 @@ public class SwingInterface implements CoreListener {
         * Imports old jSite configuration.
         */
        private void importConfig() {
+               /* TODO */
        }
 
        /**
@@ -485,24 +627,112 @@ public class SwingInterface implements CoreListener {
        }
 
        /**
+        * Rebuilds all node connect and disconnect actions.
+        * 
+        * @param nodes
+        *            The list of nodes
+        */
+       private void rebuildNodeActions(List<Node> nodes) {
+               nodeConnectActions.clear();
+               nodeNodeConnectActions.clear();
+               nodeConnectActionNodes.clear();
+               nodeDisconnectActions.clear();
+               nodeNodeDisconnectActions.clear();
+               nodeDisconnectActionNodes.clear();
+               for (Node node: nodes) {
+                       Action nodeConnectAction = new AbstractAction(node.getName()) {
+
+                               /**
+                                * {@inheritDoc}
+                                */
+                               @SuppressWarnings("synthetic-access")
+                               public void actionPerformed(ActionEvent e) {
+                                       Node node = nodeConnectActionNodes.get(this);
+                                       nodeConnect(node);
+                               }
+                       };
+                       nodeConnectActions.add(nodeConnectAction);
+                       nodeConnectActionNodes.put(nodeConnectAction, node);
+                       nodeNodeConnectActions.put(node, nodeConnectAction);
+                       Action nodeDisconnectAction = new AbstractAction(node.getName()) {
+
+                               /**
+                                * {@inheritDoc}
+                                */
+                               @SuppressWarnings("synthetic-access")
+                               public void actionPerformed(ActionEvent e) {
+                                       Node node = nodeDisconnectActionNodes.get(this);
+                                       nodeDisconnect(node);
+                               }
+                       };
+// nodeDisconnectActions.add(nodeDisconnectAction);
+                       nodeDisconnectActionNodes.put(nodeDisconnectAction, node);
+                       nodeNodeDisconnectActions.put(node, nodeDisconnectAction);
+               }
+       }
+
+       /**
         * Pops up the “manage nodes” dialog.
         */
        private void manageNodes() {
-               manageNodesDialog.setNodeList(nodeList);
-               manageNodesDialog.setVisible(true);
-               nodeList = manageNodesDialog.getNodeList();
+               if (advancedMode) {
+                       manageNodesDialog.setNodeList(nodeList);
+                       manageNodesDialog.setVisible(true);
+                       nodeList = manageNodesDialog.getNodeList();
+                       rebuildNodeActions(nodeList);
+                       mainWindow.refreshNodeMenuItems();
+               } else {
+                       if (nodeList.isEmpty()) {
+                               Node newNode = new Node();
+                               newNode.setName(I18n.get("general.defaultNode.name"));
+                               newNode.setHostname("localhost");
+                               newNode.setPort(9481);
+                               nodeList.add(newNode);
+                       }
+                       Node firstNode = nodeList.get(0);
+                       EditNodeDialog editNodeDialog = manageNodesDialog.getEditNodeDialog();
+                       editNodeDialog.setNodeName(firstNode.getName());
+                       editNodeDialog.setNodeHostname(firstNode.getHostname());
+                       editNodeDialog.setNodePort(firstNode.getPort());
+                       editNodeDialog.setVisible(true);
+                       if (!editNodeDialog.wasCancelled()) {
+                               firstNode.setName(editNodeDialog.getNodeName());
+                               firstNode.setHostname(editNodeDialog.getNodeHostname());
+                               firstNode.setPort(editNodeDialog.getNodePort());
+                               /* TODO - give to core. */
+                       }
+               }
        }
 
        /**
         * Connects to the node.
+        * 
+        * @param node
+        *            The node to connect to
         */
-       private void nodeConnect() {
+       private void nodeConnect(final Node node) {
+               threadPool.execute(new Runnable() {
+
+                       /**
+                        * {@inheritDoc}
+                        */
+                       @SuppressWarnings("synthetic-access")
+                       public void run() {
+                               logger.log(Level.INFO, "connecting to node “" + node.getName() + "”…");
+                               core.connectToNode(node);
+                       }
+               });
        }
 
        /**
         * Disconnects from the node.
+        * 
+        * @param node
+        *            The node to disconnect from
         */
-       private void nodeDisconnect() {
+       private void nodeDisconnect(Node node) {
+               logger.log(Level.INFO, "disconnecting from node “" + node.getName() + "”…");
+               core.disconnectFromNode(node);
        }
 
        /**
@@ -541,12 +771,14 @@ public class SwingInterface implements CoreListener {
         * Clones a project.
         */
        private void cloneProject() {
+               /* TODO */
        }
 
        /**
         * Deletes a project.
         */
        private void deleteProject() {
+               /* TODO */
        }
 
        //
@@ -556,36 +788,115 @@ public class SwingInterface implements CoreListener {
        /**
         * {@inheritDoc}
         */
-       public void loadingProjectsFailed(String directory) {
+       public void loadingProjectsDone(String directory) {
+               mainWindow.setStatusBarText(I18n.get("mainWindow.statusBar.projectLoadingDone"));
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void loadingProjectsFailed(String directory, Throwable throwable) {
                JOptionPane.showMessageDialog(mainWindow, I18n.get("mainWindow.error.projectLoadingFailed.message", directory), I18n.get("mainWindow.error.projectLoadingFailed.title"), JOptionPane.ERROR_MESSAGE);
        }
 
        /**
         * {@inheritDoc}
         */
+       public void savingProjectsDone(String directory) {
+               mainWindow.setStatusBarText(I18n.get("mainWindow.statusBar.projectSavingDone"));
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void savingProjectsFailed(String directory, Throwable throwabled) {
+               /* TODO */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void loadingNodesDone(String directory) {
+               mainWindow.setStatusBarText(I18n.get("mainWindow.statusBar.loadingNodesDone"));
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void loadingNodesFailed(String directory, Throwable throwable) {
+               /* TODO */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void savingNodesDone(String directory) {
+               mainWindow.setStatusBarText(I18n.get("mainWindow.statusBar.savingNodesDone"));
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void savingNodesFailed(String directory, Throwable throwable) {
+               /* TODO */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
        public void coreLoaded() {
                this.nodeList = core.getNodes();
                manageNodesDialog.setNodeList(nodeList);
                mainWindow.setVisible(true);
-               mainWindow.setStatusBarText("Core loaded.");
+               mainWindow.setStatusBarText(I18n.get("mainWindow.statusBar.coreLoaded"));
        }
 
        /**
         * {@inheritDoc}
         */
-       public void nodeConnected(Node node) {
+       public void coreStopped() {
+               mainWindow.setStatusBarText(I18n.get("mainWindow.statusBar.coreStopped"));
        }
 
        /**
         * {@inheritDoc}
         */
        public void nodeConnecting(Node node) {
+               Action nodeConnectAction = nodeNodeConnectActions.get(node);
+               nodeConnectActions.remove(nodeConnectAction);
+               mainWindow.setStatusBarText(I18n.get("mainWindow.statusBar.connectingToNode", node.getName(), node.getHostname(), node.getPort()));
+               mainWindow.refreshNodeMenuItems();
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void nodeConnected(Node node) {
+               Action nodeDisconnectAction = nodeNodeDisconnectActions.get(node);
+               nodeDisconnectActions.add(nodeDisconnectAction);
+               mainWindow.refreshNodeMenuItems();
        }
 
        /**
         * {@inheritDoc}
         */
-       public void nodeDisconnected(Node node) {
+       public void nodeDisconnected(Node node, Throwable throwable) {
+               Action nodeConnectAction = nodeNodeConnectActions.get(node);
+               nodeConnectActions.add(nodeConnectAction);
+               Action nodeDisconnectAction = nodeNodeDisconnectActions.get(node);
+               nodeDisconnectActions.remove(nodeDisconnectAction);
+               mainWindow.refreshNodeMenuItems();
+       }
+
+       //
+       // INTERFACE LoggingListener
+       //
+
+       /**
+        * {@inheritDoc}
+        */
+       public void logged(LogRecord logRecord) {
+               logWindow.logged(logRecord);
        }
 
 }