]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_BaseHubNode.php
Field answer_status becomes more generic now
[hub.git] / application / hub / main / nodes / class_BaseHubNode.php
index d7833dac4cac5d888241c9280580abb7a15103e1..1dca6472acb233e396c83f8dd0aaddc78cacae61 100644 (file)
@@ -33,6 +33,9 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
        // Exception constants
        const EXCEPTION_HUB_ALREADY_ANNOUNCED = 0xe00;
 
+       // Other constants
+       const OBJECT_LIST_SEPARATOR = ',';
+
        /**
         * IP/port number of bootstrapping node
         */
@@ -74,6 +77,12 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                // Call parent constructor
                parent::__construct($className);
 
+               // Get a crypto instance
+               $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class');
+
+               // Set it here
+               $this->setCryptoInstance($cryptoInstance);
+
                // Init state which sets the state to 'init'
                $this->initState();
        }
@@ -91,6 +100,28 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                NodeStateFactory::createNodeStateInstanceByName('init', $this);
        }
 
+       /**
+        * Generates a random string from various data inluding UUID if PECL
+        * extension uuid is installed.
+        *
+        * @param       $length                 Length of the random part
+        * @return      $randomString   Random string
+        * @todo        Make this code more generic and move it to CryptoHelper or
+        */
+       protected function generateRamdomString ($length) {
+               // Get an RNG instance
+               $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class');
+
+               // Generate a pseudo-random string
+               $randomString = $rngInstance->randomString($length) . ':' . $this->getBootIpPort() . ':' . $this->getRequestInstance()->getRequestElement('mode');
+
+               // Add UUID for even more entropy for the hasher
+               $randomString .= $this->getCryptoInstance()->createUuid();
+
+               // Return it
+               return $randomString;
+       }
+
        /**
         * Generates a private key and hashes it (for speeding up things)
         *
@@ -98,18 +129,12 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
         * @return void
         */
        private function generatePrivateKeyAndHash (LocalSearchCriteria $searchInstance) {
-               // Get an RNG instance (Random Number Generator)
-               $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');
+               $randomString = $this->generateRandomString(255);
 
                // 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()));
+               $this->setPrivateKey($this->getCryptoInstance()->encryptString($randomString));
+               $this->setPrivateKeyHash($this->getCryptoInstance()->hashString($this->getPrivateKey()));
 
                // Get a wrapper instance
                $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class');
@@ -274,17 +299,11 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                        // Output message
                        self::createDebugInstance(__CLASS__)->debugOutput('BOOTSTRAP: Re-using found node-id: ' . $this->getNodeId() . '');
                } else {
-                       // Get an RNG instance (Random Number Generator)
-                       $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');
+                       $randomString = $this->generateRandomString(255);
 
                        // Hash and encrypt the string so we become a node id (also documented as "hub id")
-                       $this->setNodeId($cryptoInstance->hashString($cryptoInstance->encryptString($randomString)));
+                       $this->setNodeId($this->getCryptoInstance()->hashString($this->getCryptoInstance()->encryptString($randomString)));
 
                        // Register the node id with our wrapper
                        $wrapperInstance->registerNodeId($this, $this->getRequestInstance());
@@ -308,17 +327,11 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_TYPE, $this->getRequestInstance()->getRequestElement('mode'));
                $searchInstance->setLimit(1);
 
-               // 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');
+               // Get a random string
+               $randomString = $this->generateRamdomString(255);
 
                // Hash and encrypt the string so we become a "node id" aka Hub-Id
-               $this->setSessionId($cryptoInstance->hashString($cryptoInstance->encryptString($randomString)));
+               $this->setSessionId($this->getCryptoInstance()->hashString($this->getCryptoInstance()->encryptString($randomString)));
 
                // Get a wrapper instance
                $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_info_db_wrapper_class');
@@ -481,14 +494,14 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
         *
         * @param       $taskInstance   The task instance running this announcement
         * @return      void
-        * @throws      HubAlreadyAnnouncedException    If this hub is already announced
+        * @throws      NodeAlreadyAnnouncedException   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);
+                       throw new NodeAlreadyAnnouncedException($this, self::EXCEPTION_HUB_ALREADY_ANNOUNCED);
                } // END - if
 
                // Debug output
@@ -498,7 +511,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $helperInstance = ObjectFactory::createObjectByConfiguredName('hub_announcement_helper_class');
 
                // Load the announcement descriptor
-               $helperInstance->loadDescriptorXml();
+               $helperInstance->loadDescriptorXml($this);
 
                // Compile all variables
                $helperInstance->getTemplateInstance()->compileConfigInVariables();
@@ -529,7 +542,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                $helperInstance = ObjectFactory::createObjectByConfiguredName('hub_self_connect_helper_class', array($this));
 
                // Load the descriptor (XML) file
-               $helperInstance->loadDescriptorXml();
+               $helperInstance->loadDescriptorXml($this);
 
                // Compile all variables
                $helperInstance->getTemplateInstance()->compileConfigInVariables();
@@ -716,13 +729,39 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
         * @todo        Add checking if this node has been announced to the sender node
         */
        public function ifNodeHasAnnounced () {
+               // Debug message
+               /* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NODE: ifNodeHasAnnounced(): state=' . $this->getStateInstance()->getStateName());
+
                // Simply check the state of this node
                $hasAnnounced = ($this->getStateInstance() instanceof NodeAnnouncedState);
 
+               // Debug message
+               /* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NODE: ifNodeHasAnnounced(): hasAnnounced=' . intval($hasAnnounced));
+
                // Return it
                return $hasAnnounced;
        }
 
+       /**
+        * Checks whether this node has attempted to announce itself and completed it
+        *
+        * @return      $hasAnnouncementCompleted       Whether this node has attempted to announce itself and completed it
+        * @todo        Add checking if this node has been announced to the sender node
+        */
+       public function ifNodeHasAnnouncementCompleted () {
+               // Debug message
+               /* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NODE: ifNodeHasAnnouncementCompleted(): state=' . $this->getStateInstance()->getStateName());
+
+               // Simply check the state of this node
+               $hasAnnouncementCompleted = ($this->getStateInstance() instanceof NodeAnnouncementCompletedState);
+
+               // Debug message
+               /* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NODE: ifNodeHasAnnouncementCompleted(): hasAnnouncementCompleted=' . intval($hasAnnouncementCompleted));
+
+               // Return it
+               return $hasAnnouncementCompleted;
+       }
+
        /**
         * Enables whether this node accepts announcements
         *
@@ -732,12 +771,28 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
        protected final function enableAcceptingAnnouncements ($acceptAnnouncements = true) {
                $this->acceptAnnouncements = $acceptAnnouncements;
        }
-       
-       
+
+       /**
+        * Checks wether this node is accepting node-list requests
+        *
+        * @return      $acceptsRequest         Wether this node accepts node-list requests
+        */
+       public function isAcceptingNodeListRequests () {
+               /*
+                * Only 'regular' nodes does not accept such requests, checking
+                * HubRegularNode is faster, but if e.g. HubRegularI2PNode will be
+                * added then the next check will be true.
+                */
+               $acceptsRequest = ((!$this instanceof HubRegularNode) && ($this->getRequestInstance()->getRequestElement('mode') != self::NODE_TYPE_REGULAR));
+
+               // Return it
+               return $acceptsRequest;
+       }
+
        /**
         * "Getter" for address:port combination
         *
-        * @param       $handlerInstance        A valid Networkable instance
+        * @param       $handlerInstance        An instance of a Networkable class
         * @return      $addressPort            A address:port combination for this node
         */
        public final function getAddressPort (Networkable $handlerInstance) {
@@ -765,11 +820,39 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
        /**
         * Handles message answer by given data array
         *
-        * @param       $messageData    A valid answer message data array
+        * @param       $messageData            A valid answer message data array
+        * @param       $packageInstance        An instance of a Receivable class
         * @return      void
+        * @todo        Handle thrown exception
         */
-       public function handleAnswerStatusByMessageData (array $messageData) {
-               die('messageData=' . print_r($messageData, true));
+       public function handleAnswerStatusByMessageData (array $messageData, Receivable $packageInstance) {
+               // Is it not empty?
+               assert(!empty($messageData[NetworkPackage::MESSAGE_DATA_ANSWER_STATUS]));
+
+               // Construct configuration entry for handling class' name
+               $classConfigEntry = strtolower($messageData[NetworkPackage::MESSAGE_ARRAY_TYPE] . '_status_' . $messageData[NetworkPackage::MESSAGE_DATA_ANSWER_STATUS]) . '_handler_class';
+
+               // Try to get a class
+               $handlerInstance = ObjectFactory::createObjectByConfiguredName($classConfigEntry);
+
+               // Handle it there
+               $handlerInstance->handleAnswerMessageData($messageData, $packageInstance);
+       }
+
+       /**
+        * "Getter" for an array of all accepted object types
+        *
+        * @return      $objectList             Array of all accepted object types
+        */
+       public function getListFromAcceptedObjectTypes () {
+               // Get registry instance
+               $objectRegistryInstance = ObjectTypeRegistryFactory::createObjectTypeRegistryInstance();
+
+               // Get all entries
+               $objectList = $objectRegistryInstance->getEntries(XmlObjectRegistryTemplateEngine::OBJECT_TYPE_DATA_NAME);
+
+               // ... and return it
+               return $objectList;
        }
 }