X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fhandler%2Fmessage-types%2Fself-connect%2Fclass_NodeMessageSelfConnectHandler.php;h=584c8daff9b4edce7c279a1d098db20e919f308b;hb=5061be761f4d0c2bb9b1943d19f8ad55ff7170dd;hp=9fdb29c3dd6e2260d4d0fe202d429baea90bbfa4;hpb=51e429ca79bad8757b68bcc8b942e43fdb50f8d5;p=hub.git diff --git a/application/hub/main/handler/message-types/self-connect/class_NodeMessageSelfConnectHandler.php b/application/hub/main/handler/message-types/self-connect/class_NodeMessageSelfConnectHandler.php index 9fdb29c3d..584c8daff 100644 --- a/application/hub/main/handler/message-types/self-connect/class_NodeMessageSelfConnectHandler.php +++ b/application/hub/main/handler/message-types/self-connect/class_NodeMessageSelfConnectHandler.php @@ -2,11 +2,11 @@ /** * A NodeMessageSelfConnect handler * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.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 @@ -32,13 +32,7 @@ class NodeMessageSelfConnectHandler extends BaseMessageHandler implements Handle parent::__construct(__CLASS__); // Set handler name - $this->setHandlerName('message_type_self_connect'); - - // Init message data array - $this->messageDataElements = array( - XmlSelfConnectTemplateEngine::SELF_CONNECT_DATA_NODE_ID, - XmlSelfConnectTemplateEngine::SELF_CONNECT_DATA_SESSION_ID - ); + $this->setHandlerName('message_self_connect'); } /** @@ -62,7 +56,21 @@ class NodeMessageSelfConnectHandler extends BaseMessageHandler implements Handle * @return void */ public function handleMessageData (array $messageData, Receivable $packageInstance) { - die(__METHOD__ . ':messageData=' . print_r($messageData, true)); + // Are node id and session id the same? + if (($messageData[XmlSelfConnectTemplateEngine::SELF_CONNECT_DATA_NODE_ID] == $this->getNodeId()) && ($messageData[XmlSelfConnectTemplateEngine::SELF_CONNECT_DATA_SESSION_ID] == $this->getSessionId())) { + // Both are equal + self::createDebugInstance(__CLASS__)->debugOutput('SELF-CONNECT[' . __METHOD__ . ':' . __LINE__ . ']: Have connected to myself, both node and session id are equal!'); + + // Get node instance ... + $nodeInstance = NodeObjectFactory::createNodeInstance(); + + // ... and change state + $nodeInstance->getStateInstance()->nodeHasSelfConnected(); + } else { + // Something really horrible happened + // @TODO Throw an exception here instead of dying + $this->debugInstance(__METHOD__ . ': ids mismatching! messageData=' . print_r($messageData, TRUE)); + } } /** @@ -71,16 +79,38 @@ class NodeMessageSelfConnectHandler extends BaseMessageHandler implements Handle * @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) { - // Add all ements - foreach ($this->messageDataElements as $key) { - // Is it there? - assert(isset($messageData[$key])); + // Add generic first + parent::addArrayToDataSet($dataSetInstance, $messageData); + + // Please don't call this method! + throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION); + } - // Add it - $dataSetInstance->addCriteria('node_' . $key, $messageData[$key]); - } // END - foreach + /** + * 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); } }