]> git.mxchange.org Git - hub.git/commitdiff
Added message handler for received announcement answer (not yet fully functional...
authorRoland Häder <roland@mxchange.org>
Sun, 20 May 2012 12:16:03 +0000 (12:16 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 20 May 2012 12:16:03 +0000 (12:16 +0000)
.gitattributes
application/hub/config.php
application/hub/main/handler/message-types/answer/.htaccess [new file with mode: 0644]
application/hub/main/handler/message-types/answer/class_NodeMessageAnnouncementAnswerHandler.php [new file with mode: 0644]

index 8ae28acf3553ef47e54a8cf35273e3c5c7088cbd..bfa2f9443d726ea0892bc7aa8dc8113f76f1d80e 100644 (file)
@@ -303,6 +303,8 @@ application/hub/main/handler/class_BaseHandler.php svneol=native#text/plain
 application/hub/main/handler/message-types/.htaccess -text svneol=unset#text/plain
 application/hub/main/handler/message-types/anouncement/.htaccess -text svneol=unset#text/plain
 application/hub/main/handler/message-types/anouncement/class_NodeMessageAnnouncementHandler.php svneol=native#text/plain
+application/hub/main/handler/message-types/answer/.htaccess -text svneol=unset#text/plain
+application/hub/main/handler/message-types/answer/class_NodeMessageAnnouncementAnswerHandler.php svneol=native#text/plain
 application/hub/main/handler/message-types/class_ svneol=native#text/plain
 application/hub/main/handler/message-types/class_BaseMessageHandler.php svneol=native#text/plain
 application/hub/main/handler/message-types/class_NodeMessageAnnouncementHandler.php svneol=native#text/plain
index 1cf9c0b8d69c1f335552b8ba9cde9527e0709ae6..23a62717eb2d2716f43f65c52a9fc6783f16771e 100644 (file)
@@ -210,6 +210,9 @@ $cfg->setConfigEntry('package_tag_self_connect_filter', 'PackageSelfConnectTagFi
 // CFG: MESSAGE-TYPE-ANNOUNCEMENT-HANDLER-CLASS
 $cfg->setConfigEntry('message_type_announcement_handler_class', 'NodeMessageAnnouncementHandler');
 
+// CFG: MESSAGE-TYPE-ANNOUNCEMENT-ANSWER-HANDLER-CLASS
+$cfg->setConfigEntry('message_type_announcement_answer_handler_class', 'NodeMessageAnnouncementAnswerHandler');
+
 // CFG: MESSAGE-TYPE-SELF-CONNECT-HANDLER-CLASS
 $cfg->setConfigEntry('message_type_self_connect_handler_class', 'NodeMessageSelfConnectHandler');
 
diff --git a/application/hub/main/handler/message-types/answer/.htaccess b/application/hub/main/handler/message-types/answer/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/hub/main/handler/message-types/answer/class_NodeMessageAnnouncementAnswerHandler.php b/application/hub/main/handler/message-types/answer/class_NodeMessageAnnouncementAnswerHandler.php
new file mode 100644 (file)
index 0000000..1ca0e41
--- /dev/null
@@ -0,0 +1,112 @@
+<?php
+/**
+ * A NodeMessageAnnouncementAnswer handler
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @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
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+class NodeMessageAnnouncementAnswerHandler extends BaseMessageHandler implements HandleableMessage, Registerable {
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+
+               // Set handler name
+               $this->setHandlerName('message_announcement');
+
+               // Init message data array
+               $this->messageDataElements = array(
+               );
+
+               // Init message-data->configuration translation array
+               $this->messageToConfig = array(
+               );
+       }
+
+       /**
+        * Creates an instance of this class
+        *
+        * @return      $handlerInstance        An instance of a HandleableMessage class
+        */
+       public final static function createNodeMessageAnnouncementAnswerHandler () {
+               // Get new instance
+               $handlerInstance = new NodeMessageAnnouncementAnswerHandler();
+
+               // Return the prepared instance
+               return $handlerInstance;
+       }
+
+       /**
+        * Handles data array of the message
+        *
+        * @param       $messageData            An array with message data to handle
+        * @param       $packageInstance        An instance of a Receivable class
+        * @return      void
+        */
+       public function handleMessageData (array $messageData, Receivable $packageInstance) {
+               die('messageData=' . print_r($messageData, true);
+               // Register the announcing node with this node
+               $this->registerNodeByMessageData($messageData);
+       }
+
+       /**
+        * Adds all required elements from given array into data set instance
+        *
+        * @param       $dataSetInstance        An instance of a StoreableCriteria class
+        * @param       $messageData            An array with all message data
+        * @return      void
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       public function addArrayToDataSet (StoreableCriteria $dataSetInstance, array $messageData) {
+               // Please don't call this method
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
+
+       /**
+        * Initializes configuration data from given message data array
+        *
+        * @param       $messageData    An array with all message data
+        * @return      void
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       protected function initMessageConfigurationData (array $messageData) {
+               // Please don't call this method
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
+
+       /**
+        * Removes configuration data with given message data array from global
+        * configuration
+        *
+        * @param       $messageData    An array with all message data
+        * @return      void
+        * @throws      UnsupportedOperationException   If this method is called
+        */
+       protected function removeMessageConfigurationData (array $messageData) {
+               // Please don't call this method
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
+       }
+}
+
+// [EOF]
+?>