install known look & feels before starting
[jSite2.git] / src / net / pterodactylus / jsite / main / Main.java
1 /*
2  * jSite2 - Main.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jsite.main;
21
22 import java.io.File;
23
24 import javax.swing.UIManager;
25 import javax.swing.UIManager.LookAndFeelInfo;
26
27 import net.pterodactylus.jsite.core.CoreImpl;
28 import net.pterodactylus.jsite.core.NodeManager;
29 import net.pterodactylus.jsite.core.ProjectManager;
30 import net.pterodactylus.jsite.core.RequestManager;
31 import net.pterodactylus.jsite.gui.SwingInterface;
32 import net.pterodactylus.util.logging.Logging;
33
34 /**
35  * Main class that is called by the VM.
36  * 
37  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
38  * @version $Id$
39  */
40 public class Main {
41
42         /**
43          * Main entry method for the VM.
44          * 
45          * @param args
46          *            The command-line arguments
47          */
48         public static void main(String[] args) {
49                 new Main().start();
50         }
51
52         /**
53          * Starts the core and the default {@link SwingInterface}.
54          */
55         private void start() {
56                 Logging.setup("jSite");
57
58                 /* include a couple known Look & Feels. */
59                 maybeAddLookAndFeel("Substance", "org.jvnet.substance.SubstanceLookAndFeel");
60
61                 CoreImpl core = new CoreImpl();
62
63                 String configDirectory = System.getProperty("user.home") + File.separator + ".jSite";
64
65                 NodeManager nodeManager = new NodeManager("jSite-" + Version.getVersion(), configDirectory);
66                 core.setNodeManager(nodeManager);
67                 nodeManager.addNodeListener(core);
68
69                 ProjectManager projectManager = new ProjectManager(configDirectory);
70                 core.setProjectManager(projectManager);
71                 projectManager.setNodeManager(nodeManager);
72
73                 RequestManager requestManager = new RequestManager();
74                 core.setRequestManager(requestManager);
75                 nodeManager.addNodeListener(requestManager);
76                 requestManager.setNodeManager(nodeManager);
77                 requestManager.addRequestListener(core);
78
79                 SwingInterface swingInterface = new SwingInterface(core, configDirectory);
80                 core.addCoreListener(swingInterface);
81                 Logging.addLoggingListener(swingInterface);
82
83                 core.start();
84         }
85
86         /**
87          * Tries to load the class with the given name and includes the look & feel
88          * in the UIManager, if it exists.
89          * 
90          * @param name
91          *            The name of the look & feel
92          * @param className
93          *            The name of the look & feel’s main class
94          */
95         private void maybeAddLookAndFeel(String name, String className) {
96                 try {
97                         Class.forName(className);
98                         LookAndFeelInfo[] installedLookAndFeelds = UIManager.getInstalledLookAndFeels();
99                         LookAndFeelInfo[] newLookAndFeels = new LookAndFeelInfo[installedLookAndFeelds.length + 1];
100                         System.arraycopy(installedLookAndFeelds, 0, newLookAndFeels, 0, installedLookAndFeelds.length);
101                         newLookAndFeels[installedLookAndFeelds.length] = new UIManager.LookAndFeelInfo(name, className);
102                         UIManager.setInstalledLookAndFeels(newLookAndFeels);
103                 } catch (ClassNotFoundException e) {
104                         /* okay, it doesn't exist, ignore. */
105                 }
106         }
107
108 }