3 * An interface for "node-helper" classes
5 * @author Roland Haeder <webmaster@ship-simu.org>
7 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Hub Developer Team
8 * @license GNU GPL 3.0 or any newer version
9 * @link http://www.ship-simu.org
10 * @todo We need to find a better name for this interface
12 * This program is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, either version 3 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 interface NodeHelper extends FrameworkInterface {
27 * Method to "bootstrap" the node. This step does also apply provided
28 * command-line arguments stored in the request instance. You should now
29 * get it from calling $this->getRequestInstance().
33 function doBootstrapping ();
36 * Initializes hub-specific queues
40 function initQueues ();
43 * Outputs the console teaser. This should only be executed on startup or
44 * full restarts. This method generates some space around the teaser.
48 function outputConsoleTeaser ();
51 * Generic method to acquire a hub-id. On first run this generates a new one
52 * based on many pseudo-random data. On any later run, unless the id
53 * got not removed from database, it will be restored from the database.
55 * @param $requestInstance A Requestable class
56 * @param $responseInstance A Responseable class
59 function bootstrapAcquireHubId (Requestable $requestInstance, Responseable $responseInstance);
62 * Activates the hub by doing some final preparation and setting
63 * $hubIsActive to true
65 * @param $requestInstance A Requestable class
66 * @param $responseInstance A Responseable class
69 function activateHub (Requestable $requestInstance, Responseable $responseInstance);
72 * Generates a session id which will be sent to the other hubs and peers
76 function bootstrapGenerateSessionId ();
79 * Initializes the listener pool (class)
83 function initializeListenerPool ();
86 * Restores a previously stored node list from database
90 function bootstrapRestoreNodeList ();
93 * Add some node-specific filters
97 function addExtraHubFilters ();
100 * Announces this hub to the upper (bootstrap or list) hubs. After this is
101 * successfully done the given task is unregistered from the handler.
103 * @param $taskInstance The task instance running this announcement
105 * @throws HubAlreadyAnnouncedException If this hub is already announced
107 function announceSelfToUpperNodes (Taskable $taskInstance);
110 * Does a self-connect attempt on the public IP address. This should make
111 * it sure, we are reachable from outside world.
113 * @param $taskInstance The task instance running this announcement
116 function doSelfConnection (Taskable $taskInstance);
119 * "Getter for address:port combination
121 * @param $handlerInstance A valid Networkable instance
122 * @return $addressPort A address:port combination for this node
124 function getAddressPort (Networkable $handlerInstance);