current state
[jSite2.git] / src / net / pterodactylus / jsite / core / Core.java
1 /*
2  * jSite2 - Core.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.core;
21
22 import java.util.ArrayList;
23 import java.util.List;
24
25 /**
26  * The core of jSite.
27  * 
28  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
29  * @version $Id$
30  */
31 public class Core {
32
33         /** The core listeners. */
34         private final List<CoreListener> coreListeners = new ArrayList<CoreListener>();
35
36         /** The node list. */
37         private List<Node> nodeList = new ArrayList<Node>();
38
39         /**
40          * Creates a new core.
41          */
42         public Core() {
43         }
44
45         //
46         // LISTENER MANAGEMENT
47         //
48
49         /**
50          * Adds the given listener to the list of registered listeners.
51          * 
52          * @param coreListener
53          *            The listener to add
54          */
55         public void addCoreListener(CoreListener coreListener) {
56                 coreListeners.add(coreListener);
57         }
58
59         /**
60          * Removes the given listener from the list of registered listeners.
61          * 
62          * @param coreListener
63          *            The listener to remove
64          */
65         public void removeCoreListener(CoreListener coreListener) {
66                 coreListeners.remove(coreListener);
67         }
68
69         /**
70          * Notifies all core listeners that the core has loaded and is ready to run.
71          */
72         private void fireCoreLoaded() {
73                 for (CoreListener coreListener: coreListeners) {
74                         coreListener.coreLoaded();
75                 }
76         }
77
78         //
79         // ACCESSORS
80         //
81
82         /**
83          * Returns the list of all configured nodes.
84          * 
85          * @return All configured nodes
86          */
87         public List<Node> getNodeList() {
88                 return nodeList;
89         }
90
91         //
92         // ACTIONS
93         //
94
95         /**
96          * Starts the core.
97          */
98         public void start() {
99                 fireCoreLoaded();
100         }
101
102         /**
103          * Connects to the given node.
104          * 
105          * @param node
106          *            The node to connect to
107          */
108         public void connectToNode(Node node) {
109         }
110
111 }