X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fnodes%2Fclass_BaseHubNode.php;h=8a091325e91c7ab85a4ef569f78462620f3d1279;hb=f8fb89d6b4f9b4bfbd5498f784043542ea23ec88;hp=ff1cf1306920000172abd021ff8079824ec15528;hpb=9cb3c72a99fe8d5fe4f5413ec98affc68b125f64;p=hub.git diff --git a/application/hub/main/nodes/class_BaseHubNode.php b/application/hub/main/nodes/class_BaseHubNode.php index ff1cf1306..8a091325e 100644 --- a/application/hub/main/nodes/class_BaseHubNode.php +++ b/application/hub/main/nodes/class_BaseHubNode.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -23,9 +23,15 @@ */ class BaseHubNode extends BaseHubSystem implements Updateable { /** - * Node id + * Node types */ - private $nodeId = ''; + const NODE_TYPE_BOOT = 'boot'; + const NODE_TYPE_MASTER = 'master'; + const NODE_TYPE_LIST = 'list'; + const NODE_TYPE_REGULAR = 'regular'; + + // Exception constants + const EXCEPTION_HUB_ALREADY_ANNOUNCED = 0xe00; /** * IP/port number of bootstrapping node @@ -35,17 +41,28 @@ class BaseHubNode extends BaseHubSystem implements Updateable { /** * Query connector instance */ - private $queryInstance = null; + private $queryConnectorInstance = NULL; + + /** + * Queue connector instance + */ + private $queueConnectorInstance = NULL; /** - * Listener pool instance + * Whether this node is anncounced (KEEP ON false!) + * @deprecated */ - private $listenerPoolInstance = null; + private $hubIsAnnounced = false; /** - * Wether the hub is active (true/false) + * Whether this hub is active (default: false) */ - private $hubIsActive = false; + private $isActive = false; + + /** + * Whether this node accepts announcements (default: false) + */ + private $acceptAnnouncements = false; /** * Protected constructor @@ -56,58 +73,83 @@ class BaseHubNode extends BaseHubSystem implements Updateable { protected function __construct ($className) { // Call parent constructor parent::__construct($className); + + // Init state which sets the state to 'init' + $this->initState(); } /** - * Setter for node id + * Initializes the node's state which sets it to 'init' * - * @param $nodeId Our new node id * @return void */ - private final function setNodeId ($nodeId) { - $this->nodeId = (string) $nodeId; + private function initState() { + /* + * Get the state factory and create the initial state, we don't need + * the state instance here + */ + NodeStateFactory::createNodeStateInstanceByName('init', $this); } /** - * Getter for node id + * Setter for query instance * - * @return $nodeId Our new node id + * @param $connectorInstance Our new query instance + * @return void */ - private final function getNodeId () { - return $this->nodeId; + private final function setQueryConnectorInstance (Connectable $connectorInstance) { + $this->queryConnectorInstance = $connectorInstance; } /** - * Setter for query instance + * Getter for query instance + * + * @return $connectorInstance Our new query instance + */ + public final function getQueryConnectorInstance () { + return $this->queryConnectorInstance; + } + + /** + * Setter for queue instance * - * @param $queryInstance Our new query instance + * @param $connectorInstance Our new queue instance * @return void */ - private final function setQueryInstance (Queryable $queryInstance) { - $this->queryInstance = $queryInstance; + private final function setQueueConnectorInstance (Connectable $connectorInstance) { + $this->queueConnectorInstance = $connectorInstance; } /** - * Getter for query instance + * Getter for queue instance + * + * @return $connectorInstance Our new queue instance + */ + public final function getQueueConnectorInstance () { + return $this->queueConnectorInstance; + } + + /** + * Getter for boot IP/port combination * - * @return $queryInstance Our new query instance + * @return $bootIpPort The IP/port combination of the boot node */ - protected final function getQueryInstance () { - return $this->queryInstance; + protected final function getBootIpPort () { + return $this->bootIpPort; } /** - * Checks wether the given IP address matches one of the bootstrapping nodes + * Checks whether the given IP address matches one of the bootstrapping nodes * * @param $remoteAddr IP address to checkout against our bootstrapping list - * @return $isFound Wether the IP is found + * @return $isFound Whether the IP is found */ protected function ifAddressMatchesBootstrappingNodes ($remoteAddr) { // By default nothing is found $isFound = false; // Run through all configured IPs - foreach (explode(',', $this->getConfigInstance()->readConfig('hub_bootstrap_nodes')) as $ipPort) { + foreach (explode(BaseHubSystem::BOOTSTRAP_NODES_SEPARATOR, $this->getConfigInstance()->getConfigEntry('hub_bootstrap_nodes')) as $ipPort) { // Split it up in IP/port $ipPortArray = explode(':', $ipPort); @@ -124,9 +166,9 @@ class BaseHubNode extends BaseHubSystem implements Updateable { // Stop further searching break; - } elseif ($ipPortArray[0] == $this->getConfigInstance()->readConfig('node_listen_addr')) { + } elseif ($ipPortArray[0] == $this->getConfigInstance()->getConfigEntry('node_listen_addr')) { // IP matches listen address. At this point we really don't care - // if we can also listen on that address! + // if we can really listen on that address $isFound = true; // Remember the port number @@ -157,7 +199,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable { // Output all lines $this->debugOutput(' '); $this->debugOutput($app->getAppName() . ' v' . $app->getAppVersion() . ' - ' . $this->getRequestInstance()->getRequestElement('mode') . ' mode active'); - $this->debugOutput('Copyright (c) 2007 - 2008 Roland Haeder, 2009 Hub Developer Team'); + $this->debugOutput('Copyright (c) 2007 - 2008 Roland Haeder, 2009 - 2012 Hub Developer Team'); $this->debugOutput(' '); $this->debugOutput('This program comes with ABSOLUTELY NO WARRANTY; for details see docs/COPYING.'); $this->debugOutput('This is free software, and you are welcome to redistribute it under certain'); @@ -170,9 +212,11 @@ class BaseHubNode extends BaseHubSystem implements Updateable { * based on many pseudo-random data. On any later run, unless the id * got not removed from database, it will be restored from the database. * + * @param $requestInstance A Requestable class + * @param $responseInstance A Responseable class * @return void */ - private function bootstrapAcquireHubId () { + public function bootstrapAcquireNodeId (Requestable $requestInstance, Responseable $responseInstance) { // Get a wrapper instance $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class'); @@ -202,12 +246,12 @@ class BaseHubNode extends BaseHubSystem implements Updateable { $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class'); // Generate a pseudo-random string - $randomString = $rngInstance->randomString(255) . ':' . $this->getRequestInstance()->getRequestElement('mode'); + $randomString = $rngInstance->randomString(255) . ':' . $this->getBootIpPort() . ':' . $this->getRequestInstance()->getRequestElement('mode'); // Get a crypto instance $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class'); - // Hash and encrypt the string so we become a "node id" aka Hub-Id + // Hash and encrypt the string so we become a node id (also documented as "hub id") $this->setNodeId($cryptoInstance->hashString($cryptoInstance->encryptString($randomString))); // Register the node id with our wrapper @@ -219,12 +263,34 @@ class BaseHubNode extends BaseHubSystem implements Updateable { } /** - * Getter for boot IP/port combination + * Generates a session id which will be sent to the other hubs and peers * - * @return $bootIpPort The IP/port combination of the boot node + * @return void */ - protected final function getBootIpPort () { - return $this->bootIpPort; + public function bootstrapGenerateSessionId () { + // Get an RNG instance + $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class'); + + // Generate a pseudo-random string + $randomString = $rngInstance->randomString(255) . ':' . $this->getBootIpPort() . ':' . $this->getRequestInstance()->getRequestElement('mode'); + + // Get a crypto instance + $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class'); + + // Hash and encrypt the string so we become a "node id" aka Hub-Id + $this->setSessionId($cryptoInstance->hashString($cryptoInstance->encryptString($randomString))); + + // Get a wrapper instance + $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class'); + + // Register the node id with our wrapper + $wrapperInstance->registerSessionId($this, $this->getRequestInstance()); + + // Output message + $this->debugOutput('BOOTSTRAP: Created new session-id: ' . $this->getSessionId() . ''); + + // Change the state because the node has auired a hub id + $this->getStateInstance()->nodeGeneratedSessionId(); } /** @@ -233,13 +299,25 @@ class BaseHubNode extends BaseHubSystem implements Updateable { * @return void */ protected function initGenericQueues () { + // Debug message + $this->debugOutput('BOOTSTRAP: Initialize queues: START'); + // Set the query connector instance - $this->setQueryInstance(ObjectFactory::createObjectByConfiguredName('query_connector_class', array($this))); + $this->setQueryConnectorInstance(ObjectFactory::createObjectByConfiguredName('query_connector_class', array($this))); // Run a test query - $this->getQueryInstance()->doTestQuery(); + $this->getQueryConnectorInstance()->doTestQuery(); + + // Set the queue connector instance + $this->setQueueConnectorInstance(ObjectFactory::createObjectByConfiguredName('queue_connector_class', array($this))); + + // Run a test queue + $this->getQueueConnectorInstance()->doTestQueue(); + + // Debug message + $this->debugOutput('BOOTSTRAP: Initialize queues: FINISHED'); } - + /** * Adds hub data elements to a given dataset instance * @@ -254,6 +332,11 @@ class BaseHubNode extends BaseHubSystem implements Updateable { // Add the node id $criteriaInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_ID, $this->getNodeId()); + + // Add the session id if acquired + if ($this->getSessionId() != '') { + $criteriaInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_SESSION_ID, $this->getSessionId()); + } // END - if } /** @@ -294,37 +377,102 @@ class BaseHubNode extends BaseHubSystem implements Updateable { } /** - * Getter for $hubIsActive attribute + * Announces this hub to the upper (bootstrap or list) hubs. After this is + * successfully done the given task is unregistered from the handler. This + * might look a bit overloaded here but the announcement phase isn't a + * simple "Hello there" message, it may later on also contain more + * informations like the object list. + * + * @param $taskInstance The task instance running this announcement + * @return void + * @throws HubAlreadyAnnouncedException If this hub is already announced + * @todo Change the first if() block to check for a specific state + */ + public function announceSelfToUpperNodes (Taskable $taskInstance) { + // Is this hub node announced? + if ($this->hubIsAnnounced === true) { + // Already announced! + throw new HubAlreadyAnnouncedException($this, self::EXCEPTION_HUB_ALREADY_ANNOUNCED); + } // END - if + + // Set some dummy configuration entries, e.g. node_status + $this->getConfigInstance()->setConfigEntry('node_status', $this->getStateInstance()->getStateName()); + + // Debug output + $this->debugOutput('HUB-Announcement: START (taskInstance=' . $taskInstance->__toString(). ')'); + + // Get a helper instance + $helperInstance = ObjectFactory::createObjectByConfiguredName('hub_announcement_helper_class'); + + // Load the announcement descriptor + $helperInstance->loadDescriptorXml(); + + // Compile all variables + $helperInstance->getTemplateInstance()->compileConfigInVariables(); + + // "Publish" the descriptor by sending it to the bootstrap/list nodes + $helperInstance->sendPackage($this); + + // Change the state, this should be the last line except debug output + $this->getStateInstance()->nodeAnnouncedToUpperHubs(); + + // Debug output + $this->debugOutput('HUB-Announcement: FINISHED'); + } + + /** + * Does a self-connect attempt on the public IP address. This should make + * it sure, we are reachable from outside world. For this kind of package we + * don't need that overload we have in the announcement phase. * - * @return $hubIsActive Wether the hub is activer + * @param $taskInstance The task instance running this announcement + * @return void */ - public final function isHubActive () { - return $this->hubIsActive; + public function doSelfConnection (Taskable $taskInstance) { + // Debug output + $this->debugOutput('HUB: Self Connection: START (taskInstance=' . $taskInstance->__toString(). ')'); + + // Get a helper instance + $helperInstance = ObjectFactory::createObjectByConfiguredName('hub_self_connect_helper_class', array($this)); + + // Load the descriptor (XML) file + $helperInstance->loadDescriptorXml(); + + // Compile all variables + $helperInstance->getTemplateInstance()->compileConfigInVariables(); + + // And send the package away + $helperInstance->sendPackage($this); + + // Debug output + $this->debugOutput('HUB: Self Connection: FINISHED'); } /** * Activates the hub by doing some final preparation and setting * $hubIsActive to true * + * @param $requestInstance A Requestable class + * @param $responseInstance A Responseable class * @return void */ - public function activateHub () { - // Checks wether a listener is still active and shuts it down if one - // is still listening - if (($this->determineIfListenerIsActive()) && ($this->isHubActive())) { + public function activateNode (Requestable $requestInstance, Responseable $responseInstance) { + // Checks whether a listener is still active and shuts it down if one + // is still listening. + if (($this->determineIfListenerIsActive()) && ($this->isNodeActive()())) { // Shutdown them down before they can hurt anything $this->shutdownListenerPool(); } // END - if - // Initialize the TCP/UDP listener pool - $this->initializeListenerPool(); + // Get the controller here + $controllerInstance = Registry::getRegistry()->getInstance('controller'); - // @TODO Do some final preparation - $this->partialStub('Do some final preparation before the hub gots activated.'); + // Run all filters for the hub activation + $controllerInstance->executeActivationFilters($requestInstance, $responseInstance); // ----------------------- Last step from here ------------------------ // Activate the hub. This is ALWAYS the last step in this method - $this->hubIsActive = true; + $this->getStateInstance()->nodeIsActivated(); // ---------------------- Last step until here ------------------------ } @@ -333,15 +481,23 @@ class BaseHubNode extends BaseHubSystem implements Updateable { * * @return void */ - private function initializeListenerPool () { + public function initializeListenerPool () { + // Debug output + $this->debugOutput('HUB: Initialize listener: START'); + // Get a new pool instance - $this->listenerPoolInstance = ObjectFactory::createObjectByConfiguredName('listener_pool_class', array($this)); + $this->setListenerPoolInstance(ObjectFactory::createObjectByConfiguredName('listener_pool_class', array($this))); // Get an instance of the low-level listener $listenerInstance = ObjectFactory::createObjectByConfiguredName('tcp_listener_class', array($this)); // Setup address and port $listenerInstance->setListenAddressByConfiguration('node_listen_addr'); + + /* + * All nodes can now use the same configuration entry because it can be + * customized in config-local.php. + */ $listenerInstance->setListenPortByConfiguration('node_tcp_listen_port'); // Initialize the listener @@ -351,19 +507,24 @@ class BaseHubNode extends BaseHubSystem implements Updateable { $decoratorInstance = ObjectFactory::createObjectByConfiguredName('hub_tcp_listener_class', array($listenerInstance)); // Add this listener to the pool - $this->listenerPoolInstance->addListener($decoratorInstance); + $this->getListenerPoolInstance()->addListener($decoratorInstance); // Get a decorator class $decoratorInstance = ObjectFactory::createObjectByConfiguredName('client_tcp_listener_class', array($listenerInstance)); // Add this listener to the pool - $this->listenerPoolInstance->addListener($decoratorInstance); + $this->getListenerPoolInstance()->addListener($decoratorInstance); // Get an instance of the low-level listener $listenerInstance = ObjectFactory::createObjectByConfiguredName('udp_listener_class', array($this)); // Setup address and port $listenerInstance->setListenAddressByConfiguration('node_listen_addr'); + + /* + * All nodes can now use the same configuration entry because it can be + * customized in config-local.php. + */ $listenerInstance->setListenPortByConfiguration('node_udp_listen_port'); // Initialize the listener @@ -373,13 +534,114 @@ class BaseHubNode extends BaseHubSystem implements Updateable { $decoratorInstance = ObjectFactory::createObjectByConfiguredName('hub_udp_listener_class', array($listenerInstance)); // Add this listener to the pool - $this->listenerPoolInstance->addListener($decoratorInstance); + $this->getListenerPoolInstance()->addListener($decoratorInstance); // Get a decorator class $decoratorInstance = ObjectFactory::createObjectByConfiguredName('client_udp_listener_class', array($listenerInstance)); // Add this listener to the pool - $this->listenerPoolInstance->addListener($decoratorInstance); + $this->getListenerPoolInstance()->addListener($decoratorInstance); + + // Debug output + $this->debugOutput('HUB: Initialize listener: FINISHED.'); + } + + /** + * Restores a previously stored node list from database + * + * @return void + */ + public function bootstrapRestoreNodeList () { + // Debug output + $this->debugOutput('HUB: Restore node list: START'); + + // Get a wrapper instance + $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_list_db_wrapper_class'); + + // Now get a search criteria instance + $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class'); + + // Search for the node number zero which is hard-coded the default + // @TODO Add some criteria, e.g. if the node is active or so + //$searchInstance->addCriteria(NodeListDatabaseWrapper::DB_COLUMN_NODE_NR, 1); + //$searchInstance->addCriteria(NodeListDatabaseWrapper::DB_COLUMN_NODE_TYPE, $this->getRequestInstance()->getRequestElement('mode')); + //$searchInstance->setLimit(1); + + // Get a result back + $resultInstance = $wrapperInstance->doSelectByCriteria($searchInstance); + + // Is it valid? + if ($resultInstance->next()) { + $this->partialStub('Do something for restoring the list.'); + // Output message + //$this->debugOutput('HUB: '); + } else { + // No previously saved node list found! + $this->debugOutput('HUB: No previously saved node list found. This is fine.'); + } + + // Debug output + $this->debugOutput('HUB: Restore node list: FINISHED.'); + } + + /** + * Getter for isActive attribute + * + * @return $isActive Whether the hub is active + */ + public final function isNodeActive() () { + return $this->isActive; + } + + /** + * Enables (default) or disables isActive flag + * + * @param $isActive Whether the hub is active + * @return void + */ + public final function enableIsActive ($isActive = true) { + $this->isActive = (bool) $isActive; + } + + /** + * Checks whether this node accepts announcements + * + * @return $acceptsAnnouncements Whether this node accepts announcements + */ + public final function isAcceptingAnnouncements () { + // Check it (this node must be active and not shutdown!) + $acceptsAnnouncements = (($this->acceptsAnnouncements === true) && ($this->isNodeActive()()); + + // Return it + return $acceptsAnnouncements; + } + + /** + * Enables whether this node accepts announcements + * + * @param $acceptsAnnouncements Whether this node accepts announcements (default: true) + * @return void + */ + protected final function enableAcceptingAnnouncements ($acceptsAnnouncements = true) { + $this->acceptAnnouncements = $acceptsAnnouncements; + } + + + /** + * "Getter for address:port combination + * + * @param $handlerInstance A valid Networkable instance + * @return $addressPort A address:port combination for this node + */ + public final function getAddressPort (Networkable $handlerInstance) { + // Construct config entry + $configEntry = 'node_' . $handlerInstance->getHandlerName() . '_listen_port'; + + // Get IP and port + $addressPort = $this->getConfigInstance()->detectServerAddress() . ':' . $this->getConfigInstance()->getConfigEntry($configEntry); + + // Return it + return $addressPort; } }