add node manager to project manager
[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 net.pterodactylus.jsite.core.CoreImpl;
25 import net.pterodactylus.jsite.core.NodeManager;
26 import net.pterodactylus.jsite.core.ProjectManager;
27 import net.pterodactylus.jsite.core.RequestManager;
28 import net.pterodactylus.jsite.gui.SwingInterface;
29 import net.pterodactylus.util.logging.Logging;
30
31 /**
32  * Main class that is called by the VM.
33  * 
34  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
35  * @version $Id$
36  */
37 public class Main {
38
39         /**
40          * Main entry method for the VM.
41          * 
42          * @param args
43          *            The command-line arguments
44          */
45         public static void main(String[] args) {
46                 new Main().start();
47         }
48
49         /**
50          * Starts the core and the default {@link SwingInterface}.
51          */
52         private void start() {
53                 Logging.setup("jSite");
54
55                 CoreImpl core = new CoreImpl();
56
57                 String configDirectory = System.getProperty("user.home") + File.separator + ".jSite";
58
59                 NodeManager nodeManager = new NodeManager("jSite-" + Version.getVersion(), configDirectory);
60                 core.setNodeManager(nodeManager);
61                 nodeManager.addNodeListener(core);
62
63                 ProjectManager projectManager = new ProjectManager(configDirectory);
64                 core.setProjectManager(projectManager);
65                 projectManager.setNodeManager(nodeManager);
66
67                 RequestManager requestManager = new RequestManager();
68                 core.setRequestManager(requestManager);
69                 nodeManager.addNodeListener(requestManager);
70                 requestManager.setNodeManager(nodeManager);
71                 requestManager.addRequestListener(core);
72
73                 SwingInterface swingInterface = new SwingInterface(core, configDirectory);
74                 core.addCoreListener(swingInterface);
75                 Logging.addLoggingListener(swingInterface);
76
77                 core.start();
78         }
79
80 }