f2fa92bc6fb75685a7e4437480a9b434e31f9442
[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 import java.util.ArrayList;
24 import java.util.Arrays;
25 import java.util.List;
26
27 import javax.swing.UIManager;
28 import javax.swing.UIManager.LookAndFeelInfo;
29
30 import net.pterodactylus.jsite.core.CoreImpl;
31 import net.pterodactylus.jsite.core.NodeManager;
32 import net.pterodactylus.jsite.core.ProjectManager;
33 import net.pterodactylus.jsite.core.RequestManager;
34 import net.pterodactylus.jsite.gui.SwingInterface;
35 import net.pterodactylus.util.logging.Logging;
36
37 /**
38  * Main class that is called by the VM.
39  * 
40  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
41  */
42 public class Main {
43
44         /**
45          * Main entry method for the VM.
46          * 
47          * @param args
48          *            The command-line arguments
49          */
50         public static void main(String[] args) {
51                 new Main().start();
52         }
53
54         /**
55          * Starts the core and the default {@link SwingInterface}.
56          */
57         private void start() {
58                 Logging.setup("jSite");
59
60                 CoreImpl core = new CoreImpl();
61
62                 String configDirectory = System.getProperty("user.home") + File.separator + ".jSite";
63
64                 NodeManager nodeManager = new NodeManager("jSite-" + Version.getVersion(), configDirectory);
65                 core.setNodeManager(nodeManager);
66                 nodeManager.addNodeListener(core);
67
68                 ProjectManager projectManager = new ProjectManager(configDirectory);
69                 core.setProjectManager(projectManager);
70                 projectManager.setNodeManager(nodeManager);
71
72                 RequestManager requestManager = new RequestManager();
73                 core.setRequestManager(requestManager);
74                 nodeManager.addNodeListener(requestManager);
75                 requestManager.setNodeManager(nodeManager);
76                 requestManager.addRequestListener(core);
77
78                 SwingInterface swingInterface = new SwingInterface(core, configDirectory);
79                 core.addCoreListener(swingInterface);
80                 Logging.addLoggingListener(swingInterface);
81
82                 core.start();
83         }
84
85         /**
86          * Tries to load the class with the given name and includes the look & feel
87          * in the UIManager, if it exists.
88          * 
89          * @param name
90          *            The name of the look & feel
91          * @param className
92          *            The name of the look & feel’s main class
93          */
94         @SuppressWarnings("unused")
95         private void addLookAndFeel(String name, String className) {
96                 addLookAndFeels(new LookAndFeelInfo(name, className));
97         }
98
99         /**
100          * Tries to load each look & feel and adds it to the list of installed look &
101          * feels.
102          * 
103          * @see UIManager#setInstalledLookAndFeels(LookAndFeelInfo[])
104          * @param lookAndFeelInfos
105          *            The look & feels to add
106          */
107         private void addLookAndFeels(LookAndFeelInfo... lookAndFeelInfos) {
108                 List<LookAndFeelInfo> allLookAndFeelInfos = new ArrayList<LookAndFeelInfo>(Arrays.asList(UIManager.getInstalledLookAndFeels()));
109                 for (LookAndFeelInfo lookAndFeelInfo: lookAndFeelInfos) {
110                         try {
111                                 Class.forName(lookAndFeelInfo.getClassName());
112                                 allLookAndFeelInfos.add(lookAndFeelInfo);
113                         } catch (ClassNotFoundException e) {
114                                 /* okay, it doesn't exist, ignore. */
115                         }
116                 }
117                 UIManager.setInstalledLookAndFeels(allLookAndFeelInfos.toArray(new LookAndFeelInfo[0]));
118         }
119
120 }