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