]> git.mxchange.org Git - hub.git/blob - application/hub/main/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php
bffb1342c7d1f150be34c67d92878153f52ef2d1
[hub.git] / application / hub / main / wrapper / node / class_NodeDistributedHashTableDatabaseWrapper.php
1 <?php
2 /**
3  * A database wrapper for distributed hash tables
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.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.shipsimu.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         /**
26          * "Cached" results for dabase for looking for unpublished entries
27          */
28         private $unpublishedEntriesInstance = NULL;
29
30         // Constants for database table names
31         const DB_TABLE_NODE_DHT = 'node_dht';
32
33         // Constants for database column names
34         const DB_COLUMN_NODE_ID            = 'node_id';
35         const DB_COLUMN_SESSION_ID         = 'session_id';
36         const DB_COLUMN_EXTERNAL_IP        = 'external_ip';
37         const DB_COLUMN_LISTEN_PORT        = 'listen_port';
38         const DB_COLUMN_PRIVATE_KEY_HASH   = 'private_key_hash';
39         const DB_COLUMN_NODE_MODE          = 'node_mode';
40         const DB_COLUMN_ACCEPTED_OBJECTS   = 'accepted_object_types';
41         const DB_COLUMN_NODE_LIST          = 'node_list';
42         const DB_COLUMN_PUBLICATION_STATUS = 'publication_status';
43         const DB_COLUMN_ANSWER_STATUS      = 'answer_status';
44         const DB_COLUMN_ACCEPT_BOOTSTRAP   = 'accept_bootstrap';
45
46         // Publication status'
47         const PUBLICATION_STATUS_PENDING = 'PENDING';
48
49         // Exception codes
50         const EXCEPTION_NODE_ALREADY_REGISTERED = 0x800;
51         const EXCEPTION_NODE_NOT_REGISTERED     = 0x801;
52
53         /**
54          * Protected constructor
55          *
56          * @return      void
57          */
58         protected function __construct () {
59                 // Call parent constructor
60                 parent::__construct(__CLASS__);
61         }
62
63         /**
64          * Creates an instance of this database wrapper by a provided user class
65          *
66          * @return      $wrapperInstance        An instance of the created wrapper class
67          */
68         public static final function createNodeDistributedHashTableDatabaseWrapper () {
69                 // Get a new instance
70                 $wrapperInstance = new NodeDistributedHashTableDatabaseWrapper();
71
72                 // Set (primary!) table name
73                 $wrapperInstance->setTableName(self::DB_TABLE_NODE_DHT);
74
75                 // Return the instance
76                 return $wrapperInstance;
77         }
78
79         /**
80          * Static getter for an array of all DHT database entries
81          *
82          * @return      $elements       All elements for the DHT dabase
83          */
84         public static final function getAllElements () {
85                 // Create array and ...
86                 $elements = array(
87                         self::DB_COLUMN_NODE_ID,
88                         self::DB_COLUMN_SESSION_ID,
89                         self::DB_COLUMN_EXTERNAL_IP,
90                         self::DB_COLUMN_LISTEN_PORT,
91                         self::DB_COLUMN_PRIVATE_KEY_HASH,
92                         self::DB_COLUMN_NODE_MODE,
93                         self::DB_COLUMN_ACCEPTED_OBJECTS,
94                         self::DB_COLUMN_NODE_LIST
95                 );
96
97                 // ... return it
98                 return $elements;
99         }
100
101         /**
102          * Prepares a search instance for given node data
103          *
104          * @param       $nodeData                       An array with valid node data
105          * @return      $searchInstance         An instance of a SearchCriteria class
106          */
107         private function prepareSearchInstance (array $nodeData) {
108                 // Assert on array elements
109                 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
110
111                 // Get instance
112                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
113
114                 // Search for node id and limit it to one entry
115                 $searchInstance->addCriteria(self::DB_COLUMN_NODE_ID, $nodeData[self::DB_COLUMN_NODE_ID]);
116                 $searchInstance->setLimit(1);
117
118                 // Return it
119                 return $searchInstance;
120         }
121
122         /**
123          * Getter for result instance for unpublished entries
124          *
125          * @return      $unpublishedEntriesInstance             Result instance
126          */
127         public final function getUnpublishedEntriesInstance () {
128                 return $this->unpublishedEntriesInstance;
129         }
130
131         /**
132          * Prepares a "local" instance of a StoreableCriteria class with all node
133          * data for insert/update queries. This data set contains data from *this*
134          * (local) node.
135          *
136          * @return      $dataSetInstance        An instance of a StoreableCriteria class
137          */
138         private function prepareLocalDataSetInstance () {
139                 // Get node/request instances
140                 $nodeInstance = NodeObjectFactory::createNodeInstance();
141                 $requestInstance = ApplicationHelper::getSelfInstance()->getRequestInstance();
142
143                 // Get a dataset instance
144                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
145
146                 // Set the primary key
147                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_NODE_ID);
148
149                 // Get ip:port combination and "explode" it
150                 $ipPort = $nodeInstance->getAddressPortArray();
151
152                 // Make sure both is valid
153                 assert(($ipPort[0] !== 'invalid') && ($ipPort[1] !== 'invalid'));
154
155                 // Get an array of all accepted object types
156                 $objectList = $nodeInstance->getListFromAcceptedObjectTypes();
157
158                 // Make sure this is an array
159                 assert(is_array($objectList));
160
161                 // Add public node data
162                 $dataSetInstance->addCriteria(self::DB_COLUMN_NODE_MODE       , $requestInstance->getRequestElement('mode'));
163                 $dataSetInstance->addCriteria(self::DB_COLUMN_EXTERNAL_IP     , $ipPort[0]);
164                 $dataSetInstance->addCriteria(self::DB_COLUMN_LISTEN_PORT     , $ipPort[1]);
165                 $dataSetInstance->addCriteria(self::DB_COLUMN_NODE_ID         , $nodeInstance->getNodeId());
166                 $dataSetInstance->addCriteria(self::DB_COLUMN_SESSION_ID      , $nodeInstance->getSessionId());
167                 $dataSetInstance->addCriteria(self::DB_COLUMN_PRIVATE_KEY_HASH, $nodeInstance->getPrivateKeyHash());
168                 $dataSetInstance->addCriteria(self::DB_COLUMN_ACCEPTED_OBJECTS, implode(BaseHubNode::OBJECT_LIST_SEPARATOR, $objectList));
169                 $dataSetInstance->addCriteria(self::DB_COLUMN_ACCEPT_BOOTSTRAP, $this->translateBooleanToYesNo($nodeInstance->isAcceptingDhtBootstrap()));
170
171                 // Return it
172                 return $dataSetInstance;
173         }
174
175         /**
176          * Checks whether the local (*this*) node is registered in the DHT by
177          * checking if the external ip/port is found.
178          *
179          * @return      $isRegistered   Whether *this* node is registered in the DHT
180          */
181         public function isLocalNodeRegistered () {
182                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: CALLED!');
183
184                 // Get a search criteria instance
185                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
186
187                 // Get node instance
188                 $nodeInstance = NodeObjectFactory::createNodeInstance();
189
190                 // Get ip:port combination and "explode" it
191                 $ipPort = $nodeInstance->getAddressPortArray();
192
193                 /*
194                  * Make sure both is not 'invalid' which means that the resolver
195                  * didn't work.
196                  */
197                 assert(($ipPort[0] !== 'invalid') && ($ipPort[1] !== 'invalid'));
198
199                 // Add ip:port/node id as criteria
200                 $searchInstance->addCriteria(self::DB_COLUMN_EXTERNAL_IP, $ipPort[0]);
201                 $searchInstance->addCriteria(self::DB_COLUMN_LISTEN_PORT, $ipPort[1]);
202                 $searchInstance->addCriteria(self::DB_COLUMN_NODE_ID    , $nodeInstance->getNodeId());
203                 $searchInstance->addCriteria(self::DB_COLUMN_SESSION_ID , $nodeInstance->getSessionId());
204                 $searchInstance->setLimit(1);
205
206                 // Query database and get a result instance back
207                 $resultInstance = $this->doSelectByCriteria($searchInstance);
208
209                 // Cache result of if there is an entry, valid() will tell us if an entry is there
210                 $isRegistered = $resultInstance->valid();
211
212                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: isRegistered=' . intval($isRegistered) . ' - EXIT!');
213
214                 // Return result
215                 return $isRegistered;
216         }
217
218         /**
219          * Registeres the local (*this*) node with its data in the DHT.
220          *
221          * @return      void
222          */
223         public function registerLocalNode () {
224                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: CALLED!');
225
226                 // Assert to make sure this method is called with no record in DB (the actual backend of the DHT)
227                 assert(!$this->isLocalNodeRegistered());
228
229                 // Get prepared data set instance
230                 $dataSetInstance = $this->prepareLocalDataSetInstance();
231
232                 // "Insert" this dataset instance completely into the database
233                 $this->queryInsertDataSet($dataSetInstance);
234
235                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!');
236         }
237
238         /**
239          * Updates local (*this*) node's data in DHT, this is but not limited to the
240          * session id, ip number (and/or hostname) and port number.
241          *
242          * @return      void
243          */
244         public function updateLocalNode () {
245                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: CALLED!');
246
247                 // Assert to make sure this method is called with one record in DB (the actual backend of the DHT)
248                 assert($this->isLocalNodeRegistered());
249
250                 // Get node instance
251                 $nodeInstance = NodeObjectFactory::createNodeInstance();
252
253                 // Get search criteria
254                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
255
256                 // Search for node id and limit it to one entry
257                 $searchInstance->addCriteria(self::DB_COLUMN_NODE_ID, $nodeInstance->getNodeId());
258                 $searchInstance->setLimit(1);
259
260                 // Get a prepared dataset instance
261                 $dataSetInstance = $this->prepareLocalDataSetInstance();
262
263                 // Set search instance
264                 $dataSetInstance->setSearchInstance($searchInstance);
265
266                 // Update DHT database record
267                 $this->queryUpdateDataSet($dataSetInstance);
268
269                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!');
270         }
271
272         /**
273          * Finds a node locally by given session id
274          *
275          * @param       $sessionId      Session id to lookup
276          * @return      $nodeData       Node data array
277          */
278         public function findNodeLocalBySessionId ($sessionId) {
279                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: sessionId=' . $sessionId . ' - CALLED!');
280
281                 // Get search criteria
282                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
283
284                 // Search for session id and limit it to one entry
285                 $searchInstance->addCriteria(self::DB_COLUMN_SESSION_ID, $sessionId);
286                 $searchInstance->setLimit(1);
287
288                 // Query database and get a result instance back
289                 $resultInstance = $this->doSelectByCriteria($searchInstance);
290
291                 // Return result instance
292                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: resultInstance->valid()=' . intval($resultInstance->valid()) . ' - EXIT!');
293                 return $resultInstance;
294         }
295
296         /**
297          * Registeres a node by given message data.
298          *
299          * @param       $messageData            An array of all message data
300          * @param       $handlerInstance        An instance of a HandleableDataSet class
301          * @return      void
302          */
303         public function registerNodeByMessageData (array $messageData, HandleableDataSet $handlerInstance) {
304                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: handlerInstance=' . $handlerInstance->__toString() . ' - CALLED!');
305
306                 // Get a data set instance
307                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
308
309                 // Set primary key (session id)
310                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
311
312                 // Add all array elements
313                 $handlerInstance->addArrayToDataSet($dataSetInstance, $messageData);
314
315                 // Remove 'node_list'
316                 $dataSetInstance->unsetCriteria(self::DB_COLUMN_NODE_LIST);
317
318                 // Run the "INSERT" query
319                 $this->queryInsertDataSet($dataSetInstance);
320
321                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . '] - EXIT!');
322         }
323
324         /**
325          * Updates an existing entry in node list
326          *
327          * @param       $messageData            An array of all message data
328          * @param       $handlerInstance        An instance of a HandleableDataSet class
329          * @param       $searchInstance         An instance of LocalSearchCriteria class
330          * @return      void
331          */
332         public function updateNodeByMessageData (array $messageData, HandleableDataSet $handlerInstance, LocalSearchCriteria $searchInstance) {
333                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: CALLED!');
334
335                 // Get a data set instance
336                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
337
338                 // Add search instance
339                 $dataSetInstance->setSearchInstance($searchInstance);
340
341                 // Set primary key (session id)
342                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
343
344                 // Add all array elements
345                 $handlerInstance->addArrayToDataSet($dataSetInstance, $messageData);
346
347                 // Remove 'node_list'
348                 $dataSetInstance->unsetCriteria(self::DB_COLUMN_NODE_LIST);
349
350                 // Run the "UPDATE" query
351                 $this->queryUpdateDataSet($dataSetInstance);
352
353                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!');
354         }
355
356         /**
357          * Determines whether the given node data is already inserted in the DHT
358          *
359          * @param       $nodeData               An array with valid node data
360          * @return      $isRegistered   Whether the given node data is already inserted
361          */
362         public function isNodeRegistered (array $nodeData) {
363                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: CALLED!');
364
365                 // Assert on array elements
366                 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
367
368                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: node-id=' . $nodeData[self::DB_COLUMN_NODE_ID]);
369
370                 // Get search criteria
371                 $searchInstance = $this->prepareSearchInstance($nodeData);
372
373                 // Query database and get a result instance back
374                 $resultInstance = $this->doSelectByCriteria(
375                         // Search instance
376                         $searchInstance,
377                         // Only look for these array elements ("keys")
378                         array(
379                                 self::DB_COLUMN_NODE_ID     => TRUE,
380                                 self::DB_COLUMN_EXTERNAL_IP => TRUE,
381                                 self::DB_COLUMN_LISTEN_PORT => TRUE,
382                         )
383                 );
384
385                 // Check if there is an entry
386                 $isRegistered = $resultInstance->valid();
387
388                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: isRegistered=' . intval($isRegistered) . ' - EXIT!');
389
390                 // Return registration status
391                 return $isRegistered;
392         }
393
394         /**
395          * Registers a node with given data in the DHT. If the node is already
396          * registered this method shall throw an exception.
397          *
398          * @param       $nodeData       An array with valid node data
399          * @return      void
400          * @throws      NodeAlreadyRegisteredException  If the node is already registered
401          */
402         public function registerNode (array $nodeData) {
403                 // Assert on array elements
404                 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
405
406                 // Is the node registered?
407                 if ($this->isNodeRegistered($nodeData)) {
408                         // Throw an exception
409                         throw new NodeAlreadyRegisteredException(array($this, $nodeData), self::EXCEPTION_NODE_ALREADY_REGISTERED);
410                 } // END - if
411
412                 // @TODO Unimplemented part
413                 $this->partialStub('nodeData=' . print_r($nodeData, TRUE));
414         }
415
416         /**
417          * Updates a node's entry in the DHT with given data. This will enrich or
418          * just update already exsiting data. If the node is not found this method
419          * shall throw an exception.
420          *
421          * @param       $nodeData       An array with valid node data
422          * @return      void
423          * @throws      NodeDataMissingException        If the node's data is missing
424          */
425         public function updateNode (array $nodeData) {
426                 // Assert on array elements
427                 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
428
429                 // Debug message
430                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: Updating DHT entry for node-id=' . $nodeData[self::DB_COLUMN_NODE_ID] . ' ...');
431
432                 // Is the node registered?
433                 if (!$this->isNodeRegistered($nodeData)) {
434                         // No, then throw an exception
435                         throw new NodeDataMissingException(array($this, $nodeData), self::EXCEPTION_NODE_NOT_REGISTERED);
436                 } // END - if
437
438                 // Get a search instance
439                 $searchInstance = $this->prepareSearchInstance($nodeData);
440
441                 // Get a data set instance
442                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
443
444                 // Add search instance
445                 $dataSetInstance->setSearchInstance($searchInstance);
446
447                 // Set primary key (session id)
448                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
449
450                 // Get node instance
451                 $nodeInstance = NodeObjectFactory::createNodeInstance();
452
453                 // Debug message
454                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: nodeData=' . print_r($nodeData, TRUE));
455
456                 // Add all array elements
457                 $nodeInstance->addArrayToDataSet($dataSetInstance, $nodeData);
458
459                 // Remove 'node_list'
460                 $dataSetInstance->unsetCriteria(self::DB_COLUMN_NODE_LIST);
461
462                 // Run the "UPDATE" query
463                 $this->queryUpdateDataSet($dataSetInstance);
464         }
465
466         /**
467          * Checks whether there are unpublished entries
468          *
469          * @return      $hasUnpublished         Whether there are unpublished entries
470          * @todo        Add minimum/maximum age limitations
471          */
472         public function hasUnpublishedEntries () {
473                 // Get search instance
474                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
475
476                 // Add exclusion key which is the publish status
477                 $searchInstance->addExcludeCriteria(NodeDistributedHashTableDatabaseWrapper::DB_COLUMN_PUBLICATION_STATUS, NodeDistributedHashTableDatabaseWrapper::PUBLICATION_STATUS_PENDING);
478
479                 // Remember search instance
480                 $this->setSearchInstance($searchInstance);
481
482                 // Run the query
483                 $this->unpublishedEntriesInstance = $this->doSelectByCriteria($searchInstance);
484
485                 // Check pending entries
486                 $hasUnpublished = $this->unpublishedEntriesInstance->valid();
487
488                 // Return it
489                 return $hasUnpublished;
490         }
491
492         /**
493          * Initializes publication of DHT entries. This does only prepare
494          * publication. The next step is to pickup such prepared entries and publish
495          * them by uploading to other (recently appeared) DHT members.
496          *
497          * @return      void
498          * @todo        Add timestamp to dataset instance
499          */
500         public function initEntryPublication () {
501                 /*
502                  * Make sure that hasUnpublishedEntries() has been called first by
503                  * asserting on the "cached" object instance. This "caching" saves some
504                  * needless queries as this method shall be called immediately after
505                  * hasUnpublishedEntries() returns TRUE.
506                  */
507                 assert($this->unpublishedEntriesInstance instanceof SearchableResult);
508
509                 // Result is still okay?
510                 assert($this->unpublishedEntriesInstance->valid());
511
512                 // Remove 'publication_status'
513                 $this->getSearchInstance()->unsetCriteria(self::DB_COLUMN_PUBLICATION_STATUS);
514
515                 // Make sure all entries are marked as pending, first get a dataset instance.
516                 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
517
518                 // Add search instance
519                 $dataSetInstance->setSearchInstance($this->getSearchInstance());
520
521                 // Set primary key (node id)
522                 $dataSetInstance->setUniqueKey(self::DB_COLUMN_NODE_ID);
523
524                 // Add criteria (that should be set)
525                 $dataSetInstance->addCriteria(self::DB_COLUMN_PUBLICATION_STATUS, self::PUBLICATION_STATUS_PENDING);
526
527                 // Run the "UPDATE" query
528                 $this->queryUpdateDataSet($dataSetInstance);
529         }
530
531         /**
532          * Removes non-public data from given array.
533          *
534          * @param       $data   An array with possible non-public data that needs to be removed.
535          * @return      $data   A cleaned up array with only public data.
536          */
537         public function removeNonPublicDataFromArray(array $data) {
538                 // Currently call only inner method
539                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: Calling parent::removeNonPublicDataFromArray(data) ...');
540                 $data = parent::removeNonPublicDataFromArray($data);
541                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: data[]=' . gettype($data));
542
543                 // Return cleaned data
544                 return $data;
545         }
546
547         /**
548          * Find recipients for given package data and exclude the sender
549          *
550          * @param       $packageData    An array of valid package data
551          * @return      $recipients             An indexed array with DHT recipients
552          */
553         public function getResultFromExcludedSender (array $packageData) {
554                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: CALLED!');
555
556                 // Assert on required array field
557                 assert(isset($packageData[NetworkPackage::PACKAGE_DATA_SENDER]));
558
559                 // Get max recipients
560                 $maxRecipients = $this->getConfigInstance()->getConfigEntry('max_dht_recipients');
561
562                 // First creata a search instance
563                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
564
565                 // Then exclude 'sender' field as the sender is the current (*this*) node
566                 $searchInstance->addExcludeCriteria(NodeDistributedHashTableDatabaseWrapper::DB_COLUMN_SESSION_ID, $packageData[NetworkPackage::PACKAGE_DATA_SENDER]);
567
568                 // Set limit to maximum DHT recipients
569                 $searchInstance->setLimit($maxRecipients);
570
571                 // Get a result instance back from DHT database wrapper.
572                 $resultInstance = $this->doSelectByCriteria($searchInstance);
573
574                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!');
575
576                 // Return result instance
577                 return $resultInstance;
578         }
579
580         /**
581          * Find recopients by given key/value pair. First look for the key and if it
582          * matches, compare the value.
583          *
584          * @param       $key                    Key to look for
585          * @param       $value                  Value to compare if key matches
586          * @return      $recipients             An indexed array with DHT recipients
587          */
588         public function getResultFromKeyValue ($key, $value) {
589                 // Get max recipients
590                 $maxRecipients = $this->getConfigInstance()->getConfigEntry('max_dht_recipients');
591
592                 // First creata a search instance
593                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
594
595                 // Find the key/value pair
596                 $searchInstance->addCriteria($key, $value);
597
598                 // Get a result instance back from DHT database wrapper.
599                 $resultInstance = $this->doSelectByCriteria($searchInstance);
600
601                 // Return result instance
602                 return $resultInstance;
603         }
604
605         /**
606          * Enable DHT bootstrap request acceptance for local node
607          *
608          * @return      void
609          */
610         public function enableAcceptDhtBootstrap () {
611                 // Debug message
612                 /* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . __METHOD__ . ':' . __LINE__ . ']: Enabling DHT bootstrap requests ...');
613
614                 // Is the node already registered?
615                 if ($this->isLocalNodeRegistered()) {
616                         // Just update our record
617                         $this->updateLocalNode();
618                 } else {
619                         // Register it
620                         $this->registerLocalNode();
621                 }
622         }
623 }
624
625 // [EOF]
626 ?>