3 * Copyright © 2008 David Roden
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.
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.
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.
20 package net.pterodactylus.jsite.core;
22 import java.util.ArrayList;
23 import java.util.List;
28 * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
33 /** The core listeners. */
34 private final List<CoreListener> coreListeners = new ArrayList<CoreListener>();
37 private List<Node> configuredNodes = new ArrayList<Node>();
39 /** List of currently connected nodes. */
40 private List<Node> connectedNodes = new ArrayList<Node>();
49 // LISTENER MANAGEMENT
53 * Adds the given listener to the list of registered listeners.
58 public void addCoreListener(CoreListener coreListener) {
59 coreListeners.add(coreListener);
63 * Removes the given listener from the list of registered listeners.
66 * The listener to remove
68 public void removeCoreListener(CoreListener coreListener) {
69 coreListeners.remove(coreListener);
73 * Notifies all core listeners that the core has loaded and is ready to run.
75 private void fireCoreLoaded() {
76 for (CoreListener coreListener: coreListeners) {
77 coreListener.coreLoaded();
86 * Returns the list of all configured nodes.
88 * @return All configured nodes
90 public List<Node> getNodes() {
91 return configuredNodes;
95 * Returns whether the core is currently connected to the given node.
99 * @return <code>true</code> if the core is currently connected to the
100 * node, <code>false</code> otherwise
102 public boolean isNodeConnected(Node node) {
103 return connectedNodes.contains(node);
113 public void start() {
118 * Connects to the given node.
121 * The node to connect to
123 public void connectToNode(Node node) {