]> git.mxchange.org Git - hub.git/blob - application/hub/main/handler/message-types/class_BaseMessageHandler.php
Introduced (currently not used as type-hints) new interfaces:
[hub.git] / application / hub / main / handler / message-types / class_BaseMessageHandler.php
1 <?php
2 /**
3  * A general message handler, this class must be abstract to make the template
4  * method pattern working.
5  *
6  * @author              Roland Haeder <webmaster@ship-simu.org>
7  * @version             0.0.0
8  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
9  * @license             GNU GPL 3.0 or any newer version
10  * @link                http://www.ship-simu.org
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24  */
25 abstract class BaseMessageHandler extends BaseHandler {
26         /**
27          * Array with search criteria elements
28          */
29         private $searchData = array();
30
31         /**
32          * Array with all data XML nodes (which hold the actual data) and their values
33          */
34         protected $messageDataElements = array();
35
36         /**
37          * Array for translating message data elements (other node's data mostly)
38          * into configuration elements.
39          */
40         protected $messageToConfig = array();
41
42         /**
43          * Array for copying configuration entries
44          */
45         protected $configCopy = array();
46
47         /**
48          * Last exception instance from database layer or NULL (default)
49          */
50         private $lastException = NULL;
51
52         /**
53          * Protected constructor
54          *
55          * @param       $className      Name of the class
56          * @return      void
57          */
58         protected function __construct ($className) {
59                 // Call parent constructor
60                 parent::__construct($className);
61
62                 // Init array
63                 $this->searchData = array(
64                         XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_SESSION_ID,
65                         XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_EXTERNAL_IP,
66                         XmlAnnouncementTemplateEngine::ANNOUNCEMENT_DATA_TCP_PORT
67                 );
68         }
69
70         /**
71          * Getter for last exception
72          *
73          * @return      $lastException  Last thrown exception
74          */
75         protected final function getLastException () {
76                 return $this->lastException;
77         }
78
79         /**
80          * "Getter" for a translated last exception as a status code
81          *
82          * @return      $statusCode             Translated status code from last exception
83          */
84         protected function getTranslatedStatusFromLastException () {
85                 // Default is all fine
86                 $statusCode = self::MESSAGE_STATUS_CODE_OKAY;
87
88                 // Is the last exception not NULL?
89                 if ($this->lastException instanceof FrameworkException) {
90                         // "Determine" the right status code (may differ from exception to exception)
91                         $this->debugInstance('lastException=' . $this->lastException->__toString() . ',message=' . $this->lastException->getMessage() . ' is not finished!');
92                 } // END - if
93
94                 // Return the status code
95                 return $statusCode;
96         }
97
98         /**
99          * Registers an other node with this node by given message data. The
100          * following data must always be present:
101          *
102          * - session-id  (for finding the node's record together with below data)
103          * - external-ip (hostname or IP number)
104          * - tcp-port    (TCP port for inbound connections)
105          *
106          * @param       $messageArray   An array with all minimum message data
107          * @return      void
108          * @todo        Add something more, e.g. spreading information over DHT
109          */
110         protected function registerNodeByMessageData (array $messageData) {
111                 // Get a wrapper instance
112                 $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_list_db_wrapper_class');
113
114                 // Get a search criteria class
115                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
116
117                 // Search for the node's session id and external IP/hostname + TCP port
118                 foreach ($this->searchData as $key) {
119                         // Add criteria
120                         $searchInstance->addCriteria('node_' . $key, $messageData[$key]);
121                 } // END - foreach
122
123                 // Only one entry is fine
124                 $searchInstance->setLimit(1);
125
126                 // Run the query
127                 $resultInstance = $wrapperInstance->doSelectByCriteria($searchInstance);
128
129                 // Is there already an entry?
130                 if ($resultInstance->next()) {
131                         // Entry found, so update it
132                         $wrapperInstance->updateNodeByMessageData($messageData, $this);
133                 } else {
134                         // Nothing found, so register it
135                         $wrapperInstance->registerNodeByMessageData($messageData, $this);
136                 }
137
138                 // Save last exception
139                 $this->lastException = $wrapperInstance->getLastException();
140         }
141
142         /**
143          * Prepares a message as answer for given message data for delivery.
144          *
145          * @param       $messageData            An array with all message data
146          * @param       $packageInstance        An instance of a Deliverable instance
147          * @return      void
148          */
149         protected function prepareAnswerMessage (array $messageData, Deliverable $packageInstance) {
150                 // Debug message
151                 /* NOISY-DEBUG: */ $this->debugOutput('MESSAGE-HANDLER[' . $this->__toString() . ']: Going to send an answer message ...');
152
153                 // Get a helper instance based on this handler's name
154                 $helperInstance = ObjectFactory::createObjectByConfiguredName('node_answer_' . $this->getHandlerName() . '_helper_class', array($messageData));
155
156                 // Load descriptor XML
157                 $helperInstance->loadDescriptorXml();
158
159                 /*
160                  * Set missing (temporary) configuration data, mostly it needs to be
161                  * copied from message data array.
162                  */
163                 $this->initMessageConfigurationData($messageData);
164
165                 // Compile any configuration variables
166                 $helperInstance->getTemplateInstance()->compileConfigInVariables();
167
168                 // Get node instance
169                 $nodeInstance = Registry::getRegistry()->getInstance('node');
170
171                 // Deliver the package
172                 $helperInstance->sendPackage($nodeInstance);
173
174                 /*
175                  * Remove temporary configuration
176                  */
177                 $this->removeMessageConfigurationData($messageData);
178
179                 // Debug message
180                 /* NOISY-DEBUG: */ $this->debugOutput('MESSAGE-HANDLER[' . $this->__toString() . ']: Answer message has been prepared.');
181         }
182
183         /**
184          * Initializes configuration data from given message data array
185          *
186          * @param       $messageData    An array with all message data
187          * @return      void
188          */
189         abstract protected function initMessageConfigurationData (array $messageData);
190
191         /**
192          * Removes configuration data with given message data array from global
193          * configuration
194          *
195          * @param       $messageData    An array with all message data
196          * @return      void
197          */
198         abstract protected function removeMessageConfigurationData (array $messageData);
199 }
200
201 // [EOF]
202 ?>