]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_BaseHubNode.php
The announcement answer is now half handled, registration (more update) of the node...
[hub.git] / application / hub / main / nodes / class_BaseHubNode.php
index 286fc00516b81f3362e7f918df250fd3ac16ee03..ad392e8f2d5d934b89411132fc7d50139ba8e266 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 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
  *
@@ -41,29 +41,29 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
        /**
         * Query connector instance
         */
-       private $queryConnectorInstance = null;
+       private $queryConnectorInstance = NULL;
 
        /**
         * Queue connector instance
         */
-       private $queueConnectorInstance = null;
+       private $queueConnectorInstance = NULL;
 
        /**
-        * Listener pool instance
-        */
-       private $listenerPoolInstance = null;
-
-       /**
-        * Wether this node is anncounced (KEEP ON false!)
+        * Whether this node is anncounced (KEEP ON false!)
         * @deprecated
         */
        private $hubIsAnnounced = false;
 
        /**
-        * Wether this hub is active
+        * Whether this hub is active (default: false)
         */
        private $isActive = false;
 
+       /**
+        * Whether this node accepts announcements (default: false)
+        */
+       private $acceptAnnouncements = false;
+
        /**
         * Protected constructor
         *
@@ -84,68 +84,41 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
         * @return      void
         */
        private function initState() {
-               // Get the state factory and create the initial state, we don't need
-               // the state instance here
+               /*
+                * Get the state factory and create the initial state, we don't need
+                * the state instance here
+                */
                NodeStateFactory::createNodeStateInstanceByName('init', $this);
        }
 
        /**
-        * Setter for node id
+        * Generates a private key and hashes it (for speeding up things)
         *
-        * @param       $nodeId         Our new node id
-        * @return      void
+        * @param       $searchInstance         An instance of a LocalSearchCriteria class
+        * @return void
         */
-       private final function setNodeId ($nodeId) {
-               // Set it config now
-               $this->getConfigInstance()->setConfigEntry('node_id', (string) $nodeId);
-       }
+       private function generatePrivateKeyAndHash (LocalSearchCriteria $searchInstance) {
+               // Get an RNG instance (Random Number Generator)
+               $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class');
 
-       /**
-        * Getter for node id
-        *
-        * @return      $nodeId         Current node id
-        */
-       private final function getNodeId () {
-               // Get it from config
-               return $this->getConfigInstance()->getConfigEntry('node_id');
-       }
+               // Generate a pseudo-random string
+               $randomString = $rngInstance->randomString(255) . ':' . $this->getBootIpPort()  . ':' . $this->getRequestInstance()->getRequestElement('mode');
 
-       /**
-        * Setter for listener pool instance
-        *
-        * @param       $listenerPoolInstance   Our new listener pool instance
-        * @return      void
-        */
-       private final function setListenerPoolInstance (PoolableListener $listenerPoolInstance) {
-               $this->listenerPoolInstance = $listenerPoolInstance;
-       }
+               // Get a crypto instance
+               $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class');
 
-       /**
-        * Getter for listener pool instance
-        *
-        * @return      $listenerPoolInstance   Our current listener pool instance
-        */
-       public final function getListenerPoolInstance () {
-               return $this->listenerPoolInstance;
-       }
+               // Hash and encrypt the string so we become a node id (also documented as "hub id")
+               $this->setPrivateKey($cryptoInstance->encryptString($randomString));
+               $this->setPrivateKeyHash($cryptoInstance->hashString($this->getPrivateKey()));
 
-       /**
-        * Setter for session id
-        *
-        * @param       $sessionId              Our new session id
-        * @return      void
-        */
-       private final function setSessionId ($sessionId) {
-               $this->getConfigInstance()->setConfigEntry('session_id', (string) $sessionId);
-       }
+               // Get a wrapper instance
+               $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class');
 
-       /**
-        * Getter for session id
-        *
-        * @return      $sessionId              Current session id
-        */
-       public final function getSessionId () {
-               return $this->getConfigInstance()->getConfigEntry('session_id');
+               // Register the node id with our wrapper
+               $wrapperInstance->registerPrivateKey($this, $this->getRequestInstance(), $searchInstance);
+
+               // Output message
+               $this->debugOutput('BOOTSTRAP: Created new private key with hash: ' . $this->getPrivateKeyHash() . '');
        }
 
        /**
@@ -196,17 +169,17 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
        }
 
        /**
-        * 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(BaseHubSystem::BOOTSTRAP_NODES_SEPERATOR, $this->getConfigInstance()->getConfigEntry('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);
 
@@ -256,7 +229,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 - 2011 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');
@@ -280,7 +253,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                // Now get a search criteria instance
                $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
 
-               // Search for the node number zero which is hard-coded the default
+               // Search for the node number one which is hard-coded the default
                $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_NR, 1);
                $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_TYPE, $this->getRequestInstance()->getRequestElement('mode'));
                $searchInstance->setLimit(1);
@@ -325,6 +298,14 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
         * @return      void
         */
        public function bootstrapGenerateSessionId () {
+               // Now get a search criteria instance
+               $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
+
+               // Search for the node number one which is hard-coded the default
+               $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_NR, 1);
+               $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_TYPE, $this->getRequestInstance()->getRequestElement('mode'));
+               $searchInstance->setLimit(1);
+
                // Get an RNG instance
                $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class');
 
@@ -341,7 +322,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class');
 
                // Register the node id with our wrapper
-               $wrapperInstance->registerSessionId($this, $this->getRequestInstance());
+               $wrapperInstance->registerSessionId($this, $this->getRequestInstance(), $searchInstance);
 
                // Output message
                $this->debugOutput('BOOTSTRAP: Created new session-id: ' . $this->getSessionId() . '');
@@ -350,6 +331,56 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $this->getStateInstance()->nodeGeneratedSessionId();
        }
 
+       /**
+        * Generate a private key for en-/decryption
+        *
+        * @return      void
+        */
+       public function bootstrapGeneratePrivateKey () {
+               // Get a wrapper instance
+               $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class');
+
+               // Now get a search criteria instance
+               $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
+
+               // Search for the node number one which is hard-coded the default
+               $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_NR, 1);
+               $searchInstance->addCriteria(NodeInformationDatabaseWrapper::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()) {
+                       // Save the result instance in this class
+                       $this->setResultInstance($resultInstance);
+
+                       // Is the element set?
+                       if (is_null($this->getField(NodeInformationDatabaseWrapper::DB_COLUMN_PRIVATE_KEY))) {
+                               /*
+                                * Auto-generate the private key for e.g. out-dated database
+                                * "tables". This allows a smooth update for the underlaying
+                                * database table.
+                                */
+                               $this->generatePrivateKeyAndHash($searchInstance);
+                       } else {
+                               // Get the node id from result and set it
+                               $this->setPrivateKey($this->getField(NodeInformationDatabaseWrapper::DB_COLUMN_PRIVATE_KEY));
+                               $this->setPrivateKeyHash($this->getField(NodeInformationDatabaseWrapper::DB_COLUMN_PRIVATE_KEY_HASH));
+
+                               // Output message
+                               $this->debugOutput('BOOTSTRAP: Re-using found private key hash: ' . $this->getPrivateKeyHash() . '');
+                       }
+               } else {
+                       /*
+                        * Generate it in a private method (no confusion with 'private
+                        * method access' and 'private key' here! ;-)).
+                        */
+                       $this->generatePrivateKeyAndHash($searchInstance);
+               }
+       }
+
        /**
         * Initializes queues which every node needs
         *
@@ -394,6 +425,12 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                if ($this->getSessionId() != '') {
                        $criteriaInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_SESSION_ID, $this->getSessionId());
                } // END - if
+
+               // Add the private key if acquired
+               if ($this->getPrivateKey() != '') {
+                       $criteriaInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_PRIVATE_KEY, $this->getPrivateKey());
+                       $criteriaInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_PRIVATE_KEY_HASH, $this->getPrivateKeyHash());
+               } // END - if
        }
 
        /**
@@ -456,14 +493,11 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $this->debugOutput('HUB-Announcement: START (taskInstance=' . $taskInstance->__toString(). ')');
 
                // Get a helper instance
-               $helperInstance = ObjectFactory::createObjectByConfiguredName('hub_announcement_helper_class', array($this));
+               $helperInstance = ObjectFactory::createObjectByConfiguredName('hub_announcement_helper_class');
 
                // Load the announcement descriptor
                $helperInstance->loadDescriptorXml();
 
-               // Set some dummy configuration entries, e.g. node_status
-               $this->getConfigInstance()->setConfigEntry('node_status', $this->getStateInstance()->getStateName());
-
                // Compile all variables
                $helperInstance->getTemplateInstance()->compileConfigInVariables();
 
@@ -495,6 +529,9 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                // Load the descriptor (XML) file
                $helperInstance->loadDescriptorXml();
 
+               // Compile all variables
+               $helperInstance->getTemplateInstance()->compileConfigInVariables();
+
                // And send the package away
                $helperInstance->sendPackage($this);
 
@@ -511,9 +548,9 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
         * @return      void
         */
        public function activateNode (Requestable $requestInstance, Responseable $responseInstance) {
-               // Checks wether a listener is still active and shuts it down if one
+               // Checks whether a listener is still active and shuts it down if one
                // is still listening.
-               if (($this->determineIfListenerIsActive()) && ($this->getIsActive())) {
+               if (($this->determineIfListenerIsActive()) && ($this->isNodeActive())) {
                        // Shutdown them down before they can hurt anything
                        $this->shutdownListenerPool();
                } // END - if
@@ -547,13 +584,12 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
 
                // Setup address and port
                $listenerInstance->setListenAddressByConfiguration('node_listen_addr');
-               if ($this instanceof HubBootNode) {
-                       // Bootstrap have different listening port
-                       $listenerInstance->setListenPortByConfiguration('boot_node_tcp_listen_port');
-               } else {
-                       // All other nodes use the default port
-                       $listenerInstance->setListenPortByConfiguration('node_tcp_listen_port');
-               }
+
+               /*
+                * 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
                $listenerInstance->initListener();
@@ -565,7 +601,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $this->getListenerPoolInstance()->addListener($decoratorInstance);
 
                // Get a decorator class
-               $decoratorInstance = ObjectFactory::createObjectByConfiguredName('peer_tcp_listener_class', array($listenerInstance));
+               $decoratorInstance = ObjectFactory::createObjectByConfiguredName('client_tcp_listener_class', array($listenerInstance));
 
                // Add this listener to the pool
                $this->getListenerPoolInstance()->addListener($decoratorInstance);
@@ -575,13 +611,12 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
 
                // Setup address and port
                $listenerInstance->setListenAddressByConfiguration('node_listen_addr');
-               if ($this instanceof HubBootNode) {
-                       // Bootstrap have different listening port
-                       $listenerInstance->setListenPortByConfiguration('boot_node_udp_listen_port');
-               } else {
-                       // All other nodes use the default port
-                       $listenerInstance->setListenPortByConfiguration('node_udp_listen_port');
-               }
+
+               /*
+                * 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
                $listenerInstance->initListener();
@@ -593,7 +628,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $this->getListenerPoolInstance()->addListener($decoratorInstance);
 
                // Get a decorator class
-               $decoratorInstance = ObjectFactory::createObjectByConfiguredName('peer_udp_listener_class', array($listenerInstance));
+               $decoratorInstance = ObjectFactory::createObjectByConfiguredName('client_udp_listener_class', array($listenerInstance));
 
                // Add this listener to the pool
                $this->getListenerPoolInstance()->addListener($decoratorInstance);
@@ -643,22 +678,59 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
        /**
         * Getter for isActive attribute
         *
-        * @return      $isActive       Wether the hub is active
+        * @return      $isActive       Whether the hub is active
         */
-       public final function getIsActive () {
+       public final function isNodeActive () {
                return $this->isActive;
        }
 
        /**
         * Enables (default) or disables isActive flag
         *
-        * @param       $isActive       Wether the hub is active
+        * @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      $acceptAnnouncements    Whether this node accepts announcements
+        */
+       public final function isAcceptingAnnouncements () {
+               // Check it (this node must be active and not shutdown!)
+               $acceptAnnouncements = (($this->acceptAnnouncements === true) && ($this->isNodeActive()));
+
+               // Return it
+               return $acceptAnnouncements;
+       }
+
+       /**
+        * Checks whether this node has attempted to announce itself
+        *
+        * @return      $hasAnnounced   Whether this node has attempted to announce itself
+        */
+       public function ifNodeHasAnnounced () {
+               // Simply check the state of this node
+               $hasAnnounced = ($this->getStateInstance() instanceof NodeAnnouncedState);
+
+               // Return it
+               return $hasAnnounced;
+       }
+
+       /**
+        * Enables whether this node accepts announcements
+        *
+        * @param       $acceptAnnouncements    Whether this node accepts announcements (default: true)
+        * @return      void
+        */
+       protected final function enableAcceptingAnnouncements ($acceptAnnouncements = true) {
+               $this->acceptAnnouncements = $acceptAnnouncements;
+       }
+       
+       
        /**
         * "Getter for address:port combination
         *
@@ -675,6 +747,27 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                // Return it
                return $addressPort;
        }
+
+       /**
+        * Updates/refreshes node data (e.g. state).
+        *
+        * @return      void
+        * @todo        Find more to do here
+        */
+       public function updateNodeData () {
+               // Set some dummy configuration entries, e.g. node_status
+               $this->getConfigInstance()->setConfigEntry('node_status', $this->getStateInstance()->getStateName());
+       }
+
+       /**
+        * Handles message answer by given data array
+        *
+        * @param       $messageData    A valid answer message data array
+        * @return      void
+        */
+       public function handleAnswerStatusByMessageData (array $messageData) {
+               die('messageData=' . print_r($messageData, true);
+       }
 }
 
 // [EOF]