3 namespace Org\Shipsimu\Hub\Database\Frontend\Node\Dht;
5 // Import application-specific stuff
6 use Org\Shipsimu\Hub\Database\Frontend\BaseHubDatabaseFrontend;
7 use Org\Shipsimu\Hub\Factory\Node\NodeObjectFactory;
8 use Org\Shipsimu\Hub\Locator\Node\LocateableNode;
9 use Org\Shipsimu\Hub\Network\Message\DeliverableMessage;
10 use Org\Shipsimu\Hub\Network\Package\DeliverablePackage;
11 use Org\Shipsimu\Hub\Node\BaseHubNode;
13 // Import framework stuff
14 use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
15 use Org\Mxchange\CoreFramework\Criteria\Local\LocalSearchCriteria;
16 use Org\Mxchange\CoreFramework\Criteria\Storing\StoreableCriteria;
17 use Org\Mxchange\CoreFramework\Factory\Object\ObjectFactory;
18 use Org\Mxchange\CoreFramework\Generic\FrameworkInterface;
19 use Org\Mxchange\CoreFramework\Handler\DataSet\HandleableDataSet;
20 use Org\Mxchange\CoreFramework\Registry\Registerable;
21 use Org\Mxchange\CoreFramework\Result\Search\SearchableResult;
24 use \BadMethodCallException;
25 use \InvalidArgumentException;
28 * A database frontend for distributed hash tables
30 * @author Roland Haeder <webmaster@shipsimu.org>
32 * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2022 Hub Developer Team
33 * @license GNU GPL 3.0 or any newer version
34 * @link http://www.shipsimu.org
36 * This program is free software: you can redistribute it and/or modify
37 * it under the terms of the GNU General Public License as published by
38 * the Free Software Foundation, either version 3 of the License, or
39 * (at your option) any later version.
41 * This program is distributed in the hope that it will be useful,
42 * but WITHOUT ANY WARRANTY; without even the implied warranty of
43 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
44 * GNU General Public License for more details.
46 * You should have received a copy of the GNU General Public License
47 * along with this program. If not, see <http://www.gnu.org/licenses/>.
49 class NodeDistributedHashTableDatabaseFrontend extends BaseHubDatabaseFrontend implements NodeDhtFrontend, Registerable {
51 * "Cached" results for dabase for looking for unpublished entries
53 private $unpublishedEntriesInstance = NULL;
55 // Constants for database table names
56 const DB_TABLE_NODE_DHT = 'node_dht';
58 // Constants for database column names
59 const DB_COLUMN_NODE_ID = 'node_id';
60 const DB_COLUMN_SESSION_ID = 'session_id';
61 const DB_COLUMN_EXTERNAL_ADDRESS = 'external_address';
62 const DB_COLUMN_PRIVATE_KEY_HASH = 'private_key_hash';
63 const DB_COLUMN_NODE_MODE = 'node_mode';
64 const DB_COLUMN_ACCEPTED_OBJECTS = 'accepted_object_types';
65 const DB_COLUMN_NODE_LIST = 'node_list';
66 const DB_COLUMN_PUBLICATION_STATUS = 'publication_status';
67 const DB_COLUMN_ANSWER_STATUS = 'answer_status';
68 const DB_COLUMN_ACCEPT_BOOTSTRAP = 'accept_bootstrap';
70 // Publication status'
71 const PUBLICATION_STATUS_PENDING = 'PENDING';
74 const EXCEPTION_NODE_ALREADY_REGISTERED = 0x800;
75 const EXCEPTION_NODE_NOT_REGISTERED = 0x801;
78 * Protected constructor
82 private function __construct () {
83 // Call parent constructor
84 parent::__construct(__CLASS__);
88 * Creates an instance of this database frontend by a provided user class
90 * @return $frontendInstance An instance of the created frontend class
92 public static final function createNodeDistributedHashTableDatabaseFrontend () {
94 $frontendInstance = new NodeDistributedHashTableDatabaseFrontend();
96 // Set (primary!) table name
97 $frontendInstance->setTableName(self::DB_TABLE_NODE_DHT);
100 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: Creating node instance ...');
101 $nodeInstance = NodeObjectFactory::createNodeInstance();
104 $frontendInstance->setNodeInstance($nodeInstance);
106 // Return the instance
107 return $frontendInstance;
111 * Static getter for an array of all DHT database entries
113 * @return $elements All elements for the DHT dabase
115 public static final function getAllElements () {
116 // Create array and ...
118 self::DB_COLUMN_NODE_ID,
119 self::DB_COLUMN_SESSION_ID,
120 self::DB_COLUMN_EXTERNAL_ADDRESS,
121 self::DB_COLUMN_PRIVATE_KEY_HASH,
122 self::DB_COLUMN_NODE_MODE,
123 self::DB_COLUMN_ACCEPTED_OBJECTS,
124 self::DB_COLUMN_NODE_LIST
132 * Prepares a search instance for given node data
134 * @param $nodeData An array with valid node data
135 * @return $searchInstance An instance of a SearchCriteria class
137 private function prepareSearchInstance (array $nodeData) {
138 // Assert on array elements
139 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
140 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
143 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
145 // Search for node id and limit it to one entry
146 $searchInstance->addCriteria(self::DB_COLUMN_NODE_ID, $nodeData[self::DB_COLUMN_NODE_ID]);
147 $searchInstance->setLimit(1);
150 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
151 return $searchInstance;
155 * Prepares a "local" instance of a StoreableCriteria class with all node
156 * data for insert/update queries. This data set contains data from *this*
159 * @return $dataSetInstance An instance of a StoreableCriteria class
161 private function prepareLocalDataSetInstance () {
163 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
165 // Get request instances
166 $requestInstance = FrameworkBootstrap::getRequestInstance();
168 // Get a dataset instance
169 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
171 // Set the primary key
172 $dataSetInstance->setUniqueKey(self::DB_COLUMN_NODE_ID);
174 // Get Universal Node Locator and "explode" it
175 $locatorInstance = $this->getNodeInstance()->determineUniversalNodeLocator();
178 $externalUnl = $locatorInstance->getExternalUnl();
180 // Make sure both is valid
181 // @TODO Bad check on UNL, better use a proper validator
182 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: externalUnl=' . $externalUnl);
183 assert($externalUnl !== 'invalid');
185 // Get an array of all accepted object types
186 $objectList = $this->getNodeInstance()->getListFromAcceptedObjectTypes();
188 // Make sure this is an array
189 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: objectList()=' . count($objectList));
190 assert(is_array($objectList));
192 // Add public node data
193 $dataSetInstance->addCriteria(self::DB_COLUMN_NODE_MODE , $requestInstance->getRequestElement('mode'));
194 $dataSetInstance->addCriteria(self::DB_COLUMN_EXTERNAL_ADDRESS, $externalUnl);
195 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: nodeInstance->nodeId=' . $this->getNodeInstance()->getNodeId());
196 $dataSetInstance->addCriteria(self::DB_COLUMN_NODE_ID , $this->getNodeInstance()->getNodeId());
197 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: nodeInstance->sessionId=' . $this->getNodeInstance()->getSessionId());
198 $dataSetInstance->addCriteria(self::DB_COLUMN_SESSION_ID , $this->getNodeInstance()->getSessionId());
199 $dataSetInstance->addCriteria(self::DB_COLUMN_PRIVATE_KEY_HASH, $this->getNodeInstance()->getNodePrivateKeyHash());
200 $dataSetInstance->addCriteria(self::DB_COLUMN_ACCEPTED_OBJECTS, implode(BaseHubNode::OBJECT_LIST_SEPARATOR, $objectList));
201 $dataSetInstance->addCriteria(self::DB_COLUMN_ACCEPT_BOOTSTRAP, $this->translateBooleanToYesNo($this->getNodeInstance()->isAcceptingDhtBootstrap()));
204 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: dataSetInstance=' . $dataSetInstance->__toString() . ' - EXIT!');
205 return $dataSetInstance;
209 * Getter for result instance for unpublished entries
211 * @return $unpublishedEntriesInstance Result instance
213 public final function getUnpublishedEntriesInstance () {
214 return $this->unpublishedEntriesInstance;
218 * Checks whether the local (*this*) node is registered in the DHT by
219 * checking if the external address is found.
221 * @return $isRegistered Whether *this* node is registered in the DHT
223 public function isLocalNodeRegistered () {
224 // Get a search criteria instance
225 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
226 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
228 // Get Universal Node Locator and "explode" it
229 $locatorInstance = $this->getNodeInstance()->determineUniversalNodeLocator();
231 // Make sure the external address is set and not invalid
232 // @TODO Bad check on UNL, better use a proper validator
233 $externalUnl = $locatorInstance->getExternalUnl();
234 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: externalUnl=%s', $externalUnl));
235 assert($externalUnl != 'invalid');
237 // Add Universal Node Locator/node id as criteria
238 $searchInstance->addCriteria(self::DB_COLUMN_EXTERNAL_ADDRESS, $externalUnl);
239 $searchInstance->addCriteria(self::DB_COLUMN_NODE_ID , $this->getNodeInstance()->getNodeId());
240 $searchInstance->addCriteria(self::DB_COLUMN_SESSION_ID , $this->getNodeInstance()->getSessionId());
241 $searchInstance->setLimit(1);
243 // Query database and get a result instance back
244 $resultInstance = $this->doSelectByCriteria($searchInstance);
246 // Cache result of if there is an entry, valid() will tell us if an entry is there
247 $isRegistered = $resultInstance->valid();
250 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: isRegistered=%d - EXIT!', intval($isRegistered)));
251 return $isRegistered;
255 * Registeres the local (*this*) node with its data in the DHT.
259 public function registerLocalNode () {
261 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
263 // Assert to make sure this method is called with no record in DB (the actual backend of the DHT)
264 assert(!$this->isLocalNodeRegistered());
266 // Get prepared data set instance
267 $dataSetInstance = $this->prepareLocalDataSetInstance();
269 // "Insert" this dataset instance completely into the database
270 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: Invoking this->queryInsertDataSet(' . $dataSetInstance->__toString() . ') ...');
271 $this->queryInsertDataSet($dataSetInstance);
274 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
278 * Updates local (*this*) node's data in DHT, this is but not limited to the
279 * session id, ip number (and/or hostname) and port number.
282 * @throws BadMethodCallException If node is not locally registered
284 public function updateLocalNode () {
286 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
287 if (!$this->isLocalNodeRegistered()) {
288 // Not registered but methoded invoked
289 throw new BadMethodCallException('Node is not locally registered but method called', FrameworkInterface::EXCEPTION_BAD_METHOD_CALL);
292 // Get search criteria
293 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
295 // Search for node id and limit it to one entry
296 $searchInstance->addCriteria(self::DB_COLUMN_NODE_ID, $this->getNodeInstance()->getNodeId());
297 $searchInstance->setLimit(1);
299 // Get a prepared dataset instance
300 $dataSetInstance = $this->prepareLocalDataSetInstance();
302 // Set search instance
303 $dataSetInstance->setSearchInstance($searchInstance);
305 // Update DHT database record
306 $this->queryUpdateDataSet($dataSetInstance);
309 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
313 * Finds a node locally by given session id
315 * @param $sessionId Session id to lookup
316 * @return $resultInstance An instance of a SearchableResult class
317 * @throws InvalidArgumentException If parameter $sessionId is not valid
319 public function findNodeLocalBySessionId (string $sessionId) {
320 // Validate parameter
321 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: sessionId=%s - CALLED!', $sessionId));
322 if (empty($sessionId)) {
324 throw new InvalidArgumentException('Parameter "sessionId" is empty.');
327 // Get search criteria
328 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
330 // Search for session id and limit it to one entry
331 $searchInstance->addCriteria(self::DB_COLUMN_SESSION_ID, $sessionId);
332 $searchInstance->setLimit(1);
334 // Query database and get a result instance back
335 $resultInstance = $this->doSelectByCriteria($searchInstance);
337 // Return result instance
338 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: resultInstance->valid()=%d - EXIT!', intval($resultInstance->valid())));
339 return $resultInstance;
343 * Finds a node locally by given UNL instance
345 * @param $locatorInstance An instance of a LocateableNode class
346 * @return $resultInstance An instance of a SearchableResult class
348 public function findNodeLocalByLocatorInstance (LocateableNode $locatorInstance) {
349 // Get search criteria
350 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: locatorInstance=%s - CALLED!', $locatorInstance->__toString()));
351 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
353 // Search for session id and limit it to one entry
354 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: externalUnl=%s', $locatorInstance->getExternalUnl()));
355 $searchInstance->addCriteria(self::DB_COLUMN_EXTERNAL_ADDRESS, $locatorInstance->getExternalUnl());
356 $searchInstance->setLimit(1);
358 // Query database and get a result instance back
359 $resultInstance = $this->doSelectByCriteria($searchInstance);
361 // Return result instance
362 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: resultInstance->valid()=%d - EXIT!', intval($resultInstance->valid())));
363 return $resultInstance;
367 * Registeres a node by given message data.
369 * @param $messageInstance An instance of a DeliverableMessage class
370 * @param $handlerInstance An instance of a HandleableDataSet class
373 public function registerNodeByMessageInstance (DeliverableMessage $messageInstance, HandleableDataSet $handlerInstance) {
374 // Get a data set instance
375 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: handlerInstance=' . $handlerInstance->__toString() . ' - CALLED!');
376 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
378 // Set primary key (session id)
379 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
381 // Add all array elements
382 $handlerInstance->addArrayToDataSet($dataSetInstance, $messageInstance);
384 // Remove 'node_list'
385 $dataSetInstance->unsetCriteria(self::DB_COLUMN_NODE_LIST);
387 // Run the "INSERT" query
388 $this->queryInsertDataSet($dataSetInstance);
391 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND - EXIT!');
395 * Updates an existing entry in node list
397 * @param $messageInstance An instance of a DeliverableMessage class
398 * @param $handlerInstance An instance of a HandleableDataSet class
399 * @param $searchInstance An instance of LocalSearchCriteria class
402 public function updateNodeByMessageInstance (DeliverableMessage $messageInstance, HandleableDataSet $handlerInstance, LocalSearchCriteria $searchInstance) {
404 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
406 // Get a data set instance
407 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
409 // Add search instance
410 $dataSetInstance->setSearchInstance($searchInstance);
412 // Set primary key (session id)
413 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
415 // Add all array elements
416 $handlerInstance->addArrayToDataSet($dataSetInstance, $messageInstance);
418 // Remove 'node_list'
419 $dataSetInstance->unsetCriteria(self::DB_COLUMN_NODE_LIST);
421 // Run the "UPDATE" query
422 $this->queryUpdateDataSet($dataSetInstance);
425 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
429 * Determines whether the given node data is already inserted in the DHT
431 * @param $nodeData An array with valid node data
432 * @return $isRegistered Whether the given node data is already inserted
434 public function isNodeRegistered (array $nodeData) {
436 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
438 // Assert on array elements
439 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
442 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: node-id=' . $nodeData[self::DB_COLUMN_NODE_ID]);
444 // Get search criteria
445 $searchInstance = $this->prepareSearchInstance($nodeData);
447 // Query database and get a result instance back
448 $resultInstance = $this->doSelectByCriteria(
451 // Only look for these array elements ("keys")
453 self::DB_COLUMN_NODE_ID => TRUE,
454 self::DB_COLUMN_EXTERNAL_ADDRESS => TRUE
458 // Check if there is an entry
459 $isRegistered = $resultInstance->valid();
462 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: isRegistered=' . intval($isRegistered) . ' - EXIT!');
464 // Return registration status
465 return $isRegistered;
469 * Registers a node with given data in the DHT. If the node is already
470 * registered this method shall throw an exception.
472 * @param $nodeData An array with valid node data
474 * @throws NodeAlreadyRegisteredException If the node is already registered
476 public function registerNode (array $nodeData) {
478 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
480 // Assert on array elements
481 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
483 // Is the node registered?
484 if ($this->isNodeRegistered($nodeData)) {
485 // Throw an exception
486 throw new NodeAlreadyRegisteredException(array($this, $nodeData), self::EXCEPTION_NODE_ALREADY_REGISTERED);
489 // @TODO Unimplemented part
490 $this->partialStub('nodeData=' . print_r($nodeData, TRUE));
493 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
497 * Updates a node's entry in the DHT with given data. This will enrich or
498 * just update already exsiting data. If the node is not found this method
499 * shall throw an exception.
501 * @param $nodeData An array with valid node data
503 * @throws NodeDataMissingException If the node's data is missing
505 public function updateNode (array $nodeData) {
507 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: nodeData=' . print_r($nodeData, TRUE));
508 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
510 // Assert on array elements
511 assert(isset($nodeData[self::DB_COLUMN_NODE_ID]));
514 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: Updating DHT entry for node-id=' . $nodeData[self::DB_COLUMN_NODE_ID] . ' ...');
516 // Is the node registered?
517 if (!$this->isNodeRegistered($nodeData)) {
518 // No, then throw an exception
519 throw new NodeDataMissingException(array($this, $nodeData), self::EXCEPTION_NODE_NOT_REGISTERED);
522 // Get a search instance
523 $searchInstance = $this->prepareSearchInstance($nodeData);
525 // Get a data set instance
526 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
528 // Add search instance
529 $dataSetInstance->setSearchInstance($searchInstance);
531 // Set primary key (session id)
532 $dataSetInstance->setUniqueKey(self::DB_COLUMN_SESSION_ID);
534 // Add all array elements
535 $this->getNodeInstance()->addArrayToDataSet($dataSetInstance, $nodeData);
537 // Remove 'node_list'
538 $dataSetInstance->unsetCriteria(self::DB_COLUMN_NODE_LIST);
540 // Run the "UPDATE" query
541 $this->queryUpdateDataSet($dataSetInstance);
544 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
548 * Checks whether there are unpublished entries
550 * @return $hasUnpublished Whether there are unpublished entries
551 * @todo Add minimum/maximum age limitations
553 public function hasUnpublishedEntries () {
554 // Get search instance
555 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
557 // Add exclusion key which is the publish status
558 $searchInstance->addExcludeCriteria(NodeDistributedHashTableDatabaseFrontend::DB_COLUMN_PUBLICATION_STATUS, NodeDistributedHashTableDatabaseFrontend::PUBLICATION_STATUS_PENDING);
560 // Remember search instance
561 $this->setSearchInstance($searchInstance);
564 $this->unpublishedEntriesInstance = $this->doSelectByCriteria($searchInstance);
566 // Check pending entries
567 $hasUnpublished = $this->unpublishedEntriesInstance->valid();
570 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
573 return $hasUnpublished;
577 * Initializes publication of DHT entries. This does only prepare
578 * publication. The next step is to pickup such prepared entries and publish
579 * them by uploading to other (recently appeared) DHT members.
582 * @todo Add timestamp to dataset instance
584 public function initEntryPublication () {
586 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
589 * Make sure that hasUnpublishedEntries() has been called first by
590 * asserting on the "cached" object instance. This "caching" saves some
591 * needless queries as this method shall be called immediately after
592 * hasUnpublishedEntries() returns TRUE.
594 assert($this->unpublishedEntriesInstance instanceof SearchableResult);
596 // Result is still okay?
597 assert($this->unpublishedEntriesInstance->valid());
599 // Remove 'publication_status'
600 $this->getSearchInstance()->unsetCriteria(self::DB_COLUMN_PUBLICATION_STATUS);
602 // Make sure all entries are marked as pending, first get a dataset instance.
603 $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
605 // Add search instance
606 $dataSetInstance->setSearchInstance($this->getSearchInstance());
608 // Set primary key (node id)
609 $dataSetInstance->setUniqueKey(self::DB_COLUMN_NODE_ID);
611 // Add criteria (that should be set)
612 $dataSetInstance->addCriteria(self::DB_COLUMN_PUBLICATION_STATUS, self::PUBLICATION_STATUS_PENDING);
614 // Run the "UPDATE" query
615 $this->queryUpdateDataSet($dataSetInstance);
618 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
622 * Removes non-public data from given array.
624 * @param $data An array with possible non-public data that needs to be removed.
625 * @return $data A cleaned up array with only public data.
627 public function removeNonPublicDataFromArray(array $data) {
628 // Currently call only inner method
629 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: Invoking parent::removeNonPublicDataFromArray(data) ...');
630 $data = parent::removeNonPublicDataFromArray($data);
631 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: data[]=' . gettype($data));
633 // Return cleaned data
638 * Find recipients for given package data and exclude the sender
640 * @param $packageInstance An instance of a DeliverablePackage class
641 * @return $recipients An indexed array with DHT recipients
643 public function getResultFromExcludedSender (DeliverablePackage $packageInstance) {
645 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: CALLED!');
647 // Get max recipients
648 $maxRecipients = FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('max_dht_recipients');
650 // First creata a search instance
651 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
653 // Then exclude 'sender' field as the sender is the current (*this*) node
654 $searchInstance->addExcludeCriteria(NodeDistributedHashTableDatabaseFrontend::DB_COLUMN_SESSION_ID, $packageInstance->getSenderAddress());
656 // Set limit to maximum DHT recipients
657 $searchInstance->setLimit($maxRecipients);
659 // Get a result instance back from DHT database frontend.
660 $resultInstance = $this->doSelectByCriteria($searchInstance);
663 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: EXIT!');
665 // Return result instance
666 return $resultInstance;
670 * Find recopients by given key/value pair. First look for the key and if it
671 * matches, compare the value.
673 * @param $key Key to look for
674 * @param $value Value to compare if key matches
675 * @return $recipients An indexed array with DHT recipients
676 * @throws InvalidArgumentException If $key is empty
678 public function getResultFromKeyValue (string $key, $value) {
679 // Is key parameter valid?
680 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: key=%s,value[%s]=%s - CALLED!', $key, gettype($value), $value));
683 throw new InvalidArgumentException('Parameter key is empty');
686 // Get max recipients
687 $maxRecipients = FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('max_dht_recipients');
689 // First creata a search instance
690 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
692 // Find the key/value pair
693 $searchInstance->addCriteria($key, $value);
695 // Get a result instance back from DHT database frontend.
696 $resultInstance = $this->doSelectByCriteria($searchInstance);
698 // Return result instance
699 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('DHT-FRONTEND: resultInstance=%s - EXIT!', $resultInstance->__toString()));
700 return $resultInstance;
704 * Enable DHT bootstrap request acceptance for local node
708 public function enableAcceptDhtBootstrap () {
710 /* DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('DHT-FRONTEND: Enabling DHT bootstrap requests ...');
712 // Is the node already registered?
713 if ($this->isLocalNodeRegistered()) {
714 // Just update our record
715 $this->updateLocalNode();
718 $this->registerLocalNode();