]> git.mxchange.org Git - hub.git/blob - application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php
2e8cd3a5aba62e19e760e25761e7d4fae211b8a4
[hub.git] / application / hub / main / database / wrapper / node / class_NodeDistributedHashTableDatabaseWrapper.php
1 <?php
2 /**
3  * A database wrapper for distributed hash tables
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class NodeDistributedHashTableDatabaseWrapper extends BaseDatabaseWrapper implements NodeDhtWrapper, Registerable {
25         // Constants for database table names
26         const DB_TABLE_NODE_DHT = 'node_dht';
27
28         // Constants for database column names
29         const DB_COLUMN_NODE_ID          = 'node_id';
30         const DB_COLUMN_SESSION_ID       = 'session_id';
31         const DB_COLUMN_EXTERNAL_IP      = 'external_ip';
32         const DB_COLUMN_LISTEN_PORT      = 'listen_port';
33         const DB_COLUMN_PRIVATE_KEY      = 'private_key';
34         const DB_COLUMN_PRIVATE_KEY_HASH = 'private_key_hash';
35         const DB_COLUMN_NODE_TYPE        = 'node_type';
36
37         /**
38          * Protected constructor
39          *
40          * @return      void
41          */
42         protected function __construct () {
43                 // Call parent constructor
44                 parent::__construct(__CLASS__);
45         }
46
47         /**
48          * Creates an instance of this database wrapper by a provided user class
49          *
50          * @return      $wrapperInstance        An instance of the created wrapper class
51          */
52         public static final function createNodeDistributedHashTableDatabaseWrapper () {
53                 // Get a new instance
54                 $wrapperInstance = new NodeDistributedHashTableDatabaseWrapper();
55
56                 // Set (primary!) table name
57                 $wrapperInstance->setTableName(self::DB_TABLE_NODE_DHT);
58
59                 // Return the instance
60                 return $wrapperInstance;
61         }
62
63         /**
64          * Prepares a "local" instance of a StoreableCriteria class with all node
65          * data for insert/update queries. This data set contains data from *this*
66          * (local) node.
67          *
68          * @return      $dataSetInstance        An instance of a StoreableCriteria class
69          */
70         private function prepareLocalDataSetInstance () {
71                 // Get node/request instances
72                 $nodeInstance = Registry::getRegistry()->getInstance('node');
73                 $requestInstance = ApplicationHelper::getSelfInstance()->getRequestInstance();
74
75                 // Get a dataset instance
76                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
77
78                 // Set the primary key
79                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_NODE_ID);
80
81                 // Get ip:port combination and "explode" it
82                 $ipPort = $nodeInstance->getAddressPortArray();
83
84                 // Make sure both is valid
85                 assert(($ipPort[0] !== 'invalid') && ($ipPort[1] !== 'invalid'));
86
87                 // Add public node data
88                 $dataSetInstance->addCriteria(self::DB_COLUMN_NODE_TYPE       , $requestInstance->getRequestElement('mode'));
89                 $dataSetInstance->addCriteria(self::DB_COLUMN_EXTERNAL_IP     , $ipPort[0]);
90                 $dataSetInstance->addCriteria(self::DB_COLUMN_LISTEN_PORT     , $ipPort[1]);
91                 $dataSetInstance->addCriteria(self::DB_COLUMN_NODE_ID         , $nodeInstance->getNodeId());
92                 $dataSetInstance->addCriteria(self::DB_COLUMN_SESSION_ID      , $nodeInstance->getSessionId());
93                 $dataSetInstance->addCriteria(self::DB_COLUMN_PRIVATE_KEY_HASH, $nodeInstance->getPrivateKeyHash());
94
95                 // Return it
96                 return $dataSetInstance;
97         }
98
99         /**
100          * Checks whether the local (*this*) node is registered in the DHT by
101          * checking if the external ip/port is found.
102          *
103          * @return      $isRegistered   Whether *this* node is registered in the DHT
104          */
105         public function isLocalNodeRegistered () {
106                 // Is there cache?
107                 if (!isset($GLOBALS[__METHOD__])) {
108                         // Get a search criteria instance
109                         $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
110
111                         // Get node instance
112                         $nodeInstance = Registry::getRegistry()->getInstance('node');
113
114                         // Get ip:port combination and "explode" it
115                         $ipPort = $nodeInstance->getAddressPortArray();
116
117                         // Make sure both is valid
118                         assert(($ipPort[0] !== 'invalid') && ($ipPort[1] !== 'invalid'));
119
120                         // Add ip:port as criteria
121                         $searchInstance->addCriteria(self::DB_COLUMN_EXTERNAL_IP, $ipPort[0]);
122                         $searchInstance->addCriteria(self::DB_COLUMN_LISTEN_PORT, $ipPort[1]);
123                         $searchInstance->setLimit(1);
124
125                         // Query database and get a result instance back
126                         $resultInstance = $this->doSelectByCriteria($searchInstance);
127
128                         // Cache result of if there is an entry, next() will tell us if the next entry is valid
129                         $GLOBALS[__METHOD__] = $resultInstance->next();
130                 } // END - if
131
132                 // Return result
133                 return $GLOBALS[__METHOD__];
134         }
135
136         /**
137          * Registeres the local (*this*) node with its data in the DHT.
138          *
139          * @return      void
140          */
141         public function registerLocalNode () {
142                 // Assert to make sure this method is called with no record in DB (the actual backend of the DHT)
143                 assert(!$this->isLocalNodeRegistered());
144
145                 // Get prepared data set instance
146                 $dataSetInstance = $this->prepareLocalDataSetInstance();
147
148                 // "Insert" this dataset instance completely into the database
149                 $this->queryInsertDataSet($dataSetInstance);
150         }
151
152         /**
153          * Updates local (*this*) node data in DHT, this is but not limited to the
154          * session id, ip number (and/or hostname) and port number.
155          *
156          * @return      void
157          */
158         public function updateLocalNode () {
159                 // Assert to make sure this method is called with one record in DB (the actual backend of the DHT)
160                 assert($this->isLocalNodeRegistered());
161
162                 // Get node instance
163                 $nodeInstance = Registry::getRegistry()->getInstance('node');
164
165                 // Get search criteria
166                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
167
168                 // Search for node id and limit it to one entry
169                 $searchInstance->addCriteria(self::DB_COLUMN_NODE_ID, $nodeInstance->getNodeId());
170                 $searchInstance->setLimit(1);
171
172                 // Get a prepared dataset instance
173                 $dataSetInstance = $this->prepareLocalDataSetInstance();
174
175                 // Set search instance
176                 $dataSetInstance->setSearchInstance($searchInstance);
177
178                 // Update DHT database record
179                 $this->queryUpdateDataSet($dataSetInstance);
180         }
181
182         /**
183          * Finds a node by given session id
184          *
185          * @param       $sessionId      Session id to lookup
186          * @return      $nodeData       Node data array
187          */
188         public function findNodeBySessionId ($sessionId) {
189                 // Get search criteria
190                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
191
192                 // Search for session id and limit it to one entry
193                 $searchInstance->addCriteria(self::DB_COLUMN_SESSION_ID, $sessionId);
194                 $searchInstance->setLimit(1);
195
196                 // Query database and get a result instance back
197                 $resultInstance = $this->doSelectByCriteria($searchInstance);
198
199                 // Return result instance
200                 return $resultInstance;
201         }
202
203         /**
204          * Registeres a node by given message data.
205          *
206          * @param       $messageData            An array of all message data
207          * @param       $handlerInstance        An instance of a HandleableMessage class
208          * @return      void
209          */
210         public function registerNodeByMessageData (array $messageData, Handleable $handlerInstance) {
211                 // Get a data set instance
212                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
213
214                 // Set primary key (session id)
215                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
216
217                 // Add all array elements
218                 $handlerInstance->addArrayToDataSet($dataSetInstance, $messageData);
219
220                 // Run the "INSERT" query
221                 $this->queryInsertDataSet($dataSetInstance);
222         }
223
224         /**
225          * Updates an existing entry in node list
226          *
227          * @param       $messageData            An array of all message data
228          * @param       $handlerInstance        An instance of a HandleableMessage class
229          * @param       $searchInstance         An instance of LocalSearchCriteria class
230          * @return      void
231          */
232         public function updateNodeByMessageData (array $messageData, Handleable $handlerInstance, LocalSearchCriteria $searchInstance) {
233                 // Get a data set instance
234                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
235
236                 // Add search instance
237                 $dataSetInstance->setSearchInstance($searchInstance);
238
239                 // Set primary key (session id)
240                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
241
242                 // Add all array elements
243                 $handlerInstance->addArrayToDataSet($dataSetInstance, $messageData);
244
245                 // Run the "UPDATE" query
246                 $this->queryUpdateDataSet($dataSetInstance);
247         }
248 }
249
250 // [EOF]
251 ?>