]> git.mxchange.org Git - hub.git/blob - application/hub/main/handler/message-types/class_BaseMessageHandler.php
5b2ff9ba231e089e471b81d2f85ccab3690fafb9
[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          */
109         protected function registerNodeByMessageData (array $messageData) {
110                 // Get a wrapper instance
111                 $wrapperInstance = ObjectFactory::createObjectByConfiguredName('node_list_db_wrapper_class');
112
113                 // Get a search criteria class
114                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
115
116                 // Search for the node's session id and external IP/hostname + TCP port
117                 foreach ($this->searchData as $key) {
118                         // Add criteria
119                         $searchInstance->addCriteria('node_' . $key, $messageData[$key]);
120                 } // END - foreach
121
122                 // Only one entry is fine
123                 $searchInstance->setLimit(1);
124
125                 // Run the query
126                 $resultInstance = $wrapperInstance->doSelectByCriteria($searchInstance);
127
128                 // Is there already an entry?
129                 if ($resultInstance->next()) {
130                         // Entry found
131                         $resultInstance->debugBackTrace('Entry found!');
132                 } else {
133                         // Nothing found, so register it
134                         $wrapperInstance->registerNodeByMessageData($messageData, $this);
135                 }
136
137                 // Save last exception
138                 $this->lastException = $wrapperInstance->getLastException();
139         }
140
141         /**
142          * Prepares a message as answer for given message data for delivery.
143          *
144          * @param       $messageData            An array with all message data
145          * @param       $packageInstance        An instance of a Deliverable instance
146          * @return      void
147          */
148         protected function prepareAnswerMessage (array $messageData, Deliverable $packageInstance) {
149                 // Debug message
150                 /* NOISY-DEBUG: */ $this->debugOutput('MESSAGE-HANDLER[' . $this->__toString() . ']: Going to send an answer message ...');
151
152                 // Get a helper instance based on this handler's name
153                 $helperInstance = ObjectFactory::createObjectByConfiguredName('node_answer_' . $this->getHandlerName() . '_helper_class', array($messageData));
154
155                 // Load descriptor XML
156                 $helperInstance->loadDescriptorXml();
157
158                 /*
159                  * Set missing (temporary) configuration data, mostly it needs to be
160                  * copied from message data array.
161                  */
162                 $this->initMessageConfigurationData($messageData);
163
164                 // Compile any configuration variables
165                 $helperInstance->getTemplateInstance()->compileConfigInVariables();
166
167                 // Get node instance
168                 $nodeInstance = Registry::getRegistry()->getInstance('node');
169
170                 // Deliver the package
171                 $helperInstance->sendPackage($nodeInstance);
172
173                 /*
174                  * Remove temporary configuration
175                  */
176                 $this->removeMessageConfigurationData($messageData);
177
178                 // Debug message
179                 /* NOISY-DEBUG: */ $this->debugOutput('MESSAGE-HANDLER[' . $this->__toString() . ']: Answer message has been prepared.');
180         }
181
182         /**
183          * Initializes configuration data from given message data array
184          *
185          * @param       $messageData    An array with all message data
186          * @return      void
187          */
188         abstract protected function initMessageConfigurationData (array $messageData);
189
190         /**
191          * Removes configuration data with given message data array from global
192          * configuration
193          *
194          * @param       $messageData    An array with all message data
195          * @return      void
196          */
197         abstract protected function removeMessageConfigurationData (array $messageData);
198 }
199
200 // [EOF]
201 ?>