3 namespace Org\Shipsimu\Hub\Handler\Node\Answer\Announcement;
5 // Import application-specific stuff
6 use Org\Shipsimu\Hub\Factory\Node\NodeObjectFactory;
7 use Org\Shipsimu\Hub\Handler\Message\BaseMessageHandler;
8 use Org\Shipsimu\Hub\Handler\Message\HandleableMessage;
9 use Org\Shipsimu\Hub\Network\Receive\Receivable;
10 use Org\Shipsimu\Hub\Template\Engine\Xml\Announcement\XmlAnnouncementTemplateEngine;
11 use Org\Shipsimu\Hub\Template\Engine\Xml\Answer\Announcement\XmlAnnouncementAnswerTemplateEngine;
12 use Org\Shipsimu\Hub\Template\Engine\Xml\Network\Answer\BaseXmlAnswerTemplateEngine;
14 // Import framework stuff
15 use Org\Mxchange\CoreFramework\Criteria\Storing\StoreableCriteria;
16 use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
17 use Org\Mxchange\CoreFramework\Registry\Registerable;
20 * A NodeMessageAnnouncementAnswer handler
22 * @author Roland Haeder <webmaster@shipsimu.org>
24 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2018 Hub Developer Team
25 * @license GNU GPL 3.0 or any newer version
26 * @link http://www.shipsimu.org
28 * This program is free software: you can redistribute it and/or modify
29 * it under the terms of the GNU General Public License as published by
30 * the Free Software Foundation, either version 3 of the License, or
31 * (at your option) any later version.
33 * This program is distributed in the hope that it will be useful,
34 * but WITHOUT ANY WARRANTY; without even the implied warranty of
35 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36 * GNU General Public License for more details.
38 * You should have received a copy of the GNU General Public License
39 * along with this program. If not, see <http://www.gnu.org/licenses/>.
41 class NodeMessageAnnouncementAnswerHandler extends BaseMessageHandler implements HandleableMessage, Registerable {
43 * Protected constructor
47 protected function __construct () {
48 // Call parent constructor
49 parent::__construct(__CLASS__);
52 $this->setHandlerName('message_announcement_answer');
54 // Init message data array
55 $this->messageDataElements = array(
56 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS,
57 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_INTERNAL_ADDRESS,
58 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_NODE_STATUS,
59 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_NODE_ID,
60 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID,
61 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_PRIVATE_KEY_HASH,
62 BaseXmlAnswerTemplateEngine::ANSWER_STATUS,
65 // Init message-data->configuration translation array
66 $this->messageToConfig = array(
68 XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS => 'your_external_address',
69 XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_INTERNAL_ADDRESS => 'your_internal_address',
70 XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID => 'your_session_id'
71 XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_PRIVATE_KEY_HASH => 'your_private_key_hash'
75 // Init config-copy array
76 $this->configCopy = array(
77 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS => 'external_address',
78 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_INTERNAL_ADDRESS => 'internal_address',
79 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_NODE_STATUS => 'node_status',
80 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID => 'session_id',
81 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_PRIVATE_KEY_HASH => 'private_key_hash',
85 $this->searchData = array(
86 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID,
87 XmlAnnouncementAnswerTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_ADDRESS,
92 * Creates an instance of this class
94 * @return $handlerInstance An instance of a HandleableMessage class
96 public final static function createNodeMessageAnnouncementAnswerHandler () {
98 $handlerInstance = new NodeMessageAnnouncementAnswerHandler();
100 // Return the prepared instance
101 return $handlerInstance;
105 * Handles data array of the message
107 * @param $messageData An array with message data to handle
108 * @param $packageInstance An instance of a Receivable class
110 * @throws NoAnnouncementAttemptedException If this node has not attempted to announce itself
112 public function handleMessageData (array $messageData, Receivable $packageInstance) {
114 $nodeInstance = NodeObjectFactory::createNodeInstance();
116 // Has this node attempted to announce itself?
117 if (!$nodeInstance->ifNodeIsAnnouncing()) {
119 * This node has never announced itself, so it doesn't expect
120 * announcement answer messages.
122 throw new NoAnnouncementAttemptedException(array($this, $nodeInstance, $messageData), self::EXCEPTION_ANNOUNCEMENT_NOT_ATTEMPTED);
125 // Register the announcing node with this node
126 $this->registerNodeByMessageData($messageData);
128 // Handle the answer status element
129 $nodeInstance->handleAnswerStatusByMessageData($messageData, $packageInstance);
133 * Adds all required elements from given array into data set instance
135 * @param $dataSetInstance An instance of a StoreableCriteria class
136 * @param $messageData An array with all message data
139 public function addArrayToDataSet (StoreableCriteria $dataSetInstance, array $messageData) {
141 parent::addArrayToDataSet($dataSetInstance, $messageData);
144 foreach ($this->messageDataElements as $key) {
146 assert(isset($messageData[$key]));
149 * Add it, but remove any 'my-' prefixes as they are not used in
152 $dataSetInstance->addCriteria(str_replace('my-', '', $key), $messageData[$key]);
157 * Initializes configuration data from given message data array
159 * @param $messageData An array with all message data
161 * @throws UnsupportedOperationException If this method is called
163 protected function initMessageConfigurationData (array $messageData) {
164 // Please don't call this method
165 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
169 * Removes configuration data with given message data array from global
172 * @param $messageData An array with all message data
174 * @throws UnsupportedOperationException If this method is called
176 protected function removeMessageConfigurationData (array $messageData) {
177 // Please don't call this method
178 throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);