From: Roland Haeder Date: Sat, 3 May 2014 22:18:26 +0000 (+0200) Subject: Continued: ;-) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=82e419f6038e405ebe5106db8f37ea593a5d6562;p=hub.git Continued: ;-) - deleted deprecated files - moved 'chains' directory outside 'filter' as filter chains are no filters - Now use GIT in shell scripts - updated TODOs.txt Signed-off-by: Roland Haeder --- diff --git a/application/hub/exceptions/hub/class_HubAlreadyAnnouncedException.php b/application/hub/exceptions/hub/class_HubAlreadyAnnouncedException.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/exceptions/hub/class_HubAlreadyAnnouncedException.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/dht/class_Dht.php b/application/hub/interfaces/dht/class_Dht.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/dht/class_Dht.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/helper/hub/class_HelpableHub.php b/application/hub/interfaces/helper/hub/class_HelpableHub.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/helper/hub/class_HelpableHub.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/nodes/class_NodeHelper.php b/application/hub/interfaces/nodes/class_NodeHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/nodes/class_NodeHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/query/class_Queryable.php b/application/hub/interfaces/query/class_Queryable.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/query/class_Queryable.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/queues/class_Queueable.php b/application/hub/interfaces/queues/class_Queueable.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/queues/class_Queueable.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/visitor/connector/class_QueryConnectorVisitor.php b/application/hub/interfaces/visitor/connector/class_QueryConnectorVisitor.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/visitor/connector/class_QueryConnectorVisitor.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/visitor/connector/class_QueueConnectorVisitor.php b/application/hub/interfaces/visitor/connector/class_QueueConnectorVisitor.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/visitor/connector/class_QueueConnectorVisitor.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/visitor/query/class_QueryVisitor.php b/application/hub/interfaces/visitor/query/class_QueryVisitor.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/visitor/query/class_QueryVisitor.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/visitor/queue/class_QueueVisitor.php b/application/hub/interfaces/visitor/queue/class_QueueVisitor.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/visitor/queue/class_QueueVisitor.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/interfaces/wrapper/class_NodeListWrapper.php b/application/hub/interfaces/wrapper/class_NodeListWrapper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/interfaces/wrapper/class_NodeListWrapper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/chains/.htaccess b/application/hub/main/chains/.htaccess new file mode 100644 index 000000000..3a4288278 --- /dev/null +++ b/application/hub/main/chains/.htaccess @@ -0,0 +1 @@ +Deny from all diff --git a/application/hub/main/chains/class_PackageFilterChain.php b/application/hub/main/chains/class_PackageFilterChain.php new file mode 100644 index 000000000..22bb43224 --- /dev/null +++ b/application/hub/main/chains/class_PackageFilterChain.php @@ -0,0 +1,72 @@ + + * @version 0.0.0 + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team + * @license GNU GPL 3.0 or any newer version + * @link http://www.shipsimu.org + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +class PackageFilterChain extends FilterChain { + /** + * Protected constructor + * + * @return void + */ + protected function __construct () { + // Call parent constructor + parent::__construct(__CLASS__); + } + + /** + * Creates an instance of this class + * + * @return $chainInstance An instance of this class + */ + public static final function createPackageFilterChain () { + // Get a new instance + $chainInstance = new PackageFilterChain(); + + // Return the prepared instance + return $chainInstance; + } + + /** + * Processes the given raw message content through all filters + * + * @param $messageContent Raw message content + * @param $packageInstance An instance of a Receivable class + * @return void + * @todo This may be slow if a message with a lot tags arrived + */ + public function processMessage ($messageContent, Receivable $packageInstance) { + // Get all filters and "run" them + foreach ($this->getFilters() as $filterInstance) { + // Try to process it + try { + $filterInstance->processMessage($messageContent, $packageInstance); + } catch (FilterChainException $e) { + // This exception can be thrown to just skip any further processing + self::createDebugInstance(__CLASS__)->debugOutput('Failed to execute lase filter ' . $filterInstance->__toString() . ': ' . $e->getMessage()); + break; + } + } // END - foreach + } +} + +// [EOF] +?> diff --git a/application/hub/main/connectors/class_BaseConnector.php b/application/hub/main/connectors/class_BaseConnector.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/connectors/class_BaseConnector.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/connectors/query/class_BaseQueryConnector.php b/application/hub/main/connectors/query/class_BaseQueryConnector.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/connectors/query/class_BaseQueryConnector.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/connectors/query/local/class_LocalQueryConnector.php b/application/hub/main/connectors/query/local/class_LocalQueryConnector.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/connectors/query/local/class_LocalQueryConnector.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/connectors/queues/class_BaseQueueConnector.php b/application/hub/main/connectors/queues/class_BaseQueueConnector.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/connectors/queues/class_BaseQueueConnector.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/connectors/queues/local/class_LocalQueueConnector.php b/application/hub/main/connectors/queues/local/class_LocalQueueConnector.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/connectors/queues/local/class_LocalQueueConnector.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/filter/activation/class_HubActivation b/application/hub/main/filter/activation/class_HubActivation deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/filter/activation/class_HubActivation +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/filter/activation/node/class_NodeActivationSelfAnnouncementFilter.php b/application/hub/main/filter/activation/node/class_NodeActivationSelfAnnouncementFilter.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/filter/activation/node/class_NodeActivationSelfAnnouncementFilter.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/filter/bootstrap/node/class_NodeBootstrapInitQueuesFilter.php b/application/hub/main/filter/bootstrap/node/class_NodeBootstrapInitQueuesFilter.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/filter/bootstrap/node/class_NodeBootstrapInitQueuesFilter.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/filter/bootstrap/node/class_NodeBootstrapRestoreNodeListFilter.php b/application/hub/main/filter/bootstrap/node/class_NodeBootstrapRestoreNodeListFilter.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/filter/bootstrap/node/class_NodeBootstrapRestoreNodeListFilter.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/filter/chains/.htaccess b/application/hub/main/filter/chains/.htaccess deleted file mode 100644 index 3a4288278..000000000 --- a/application/hub/main/filter/chains/.htaccess +++ /dev/null @@ -1 +0,0 @@ -Deny from all diff --git a/application/hub/main/filter/chains/class_PackageFilterChain.php b/application/hub/main/filter/chains/class_PackageFilterChain.php deleted file mode 100644 index 22bb43224..000000000 --- a/application/hub/main/filter/chains/class_PackageFilterChain.php +++ /dev/null @@ -1,72 +0,0 @@ - - * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team - * @license GNU GPL 3.0 or any newer version - * @link http://www.shipsimu.org - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -class PackageFilterChain extends FilterChain { - /** - * Protected constructor - * - * @return void - */ - protected function __construct () { - // Call parent constructor - parent::__construct(__CLASS__); - } - - /** - * Creates an instance of this class - * - * @return $chainInstance An instance of this class - */ - public static final function createPackageFilterChain () { - // Get a new instance - $chainInstance = new PackageFilterChain(); - - // Return the prepared instance - return $chainInstance; - } - - /** - * Processes the given raw message content through all filters - * - * @param $messageContent Raw message content - * @param $packageInstance An instance of a Receivable class - * @return void - * @todo This may be slow if a message with a lot tags arrived - */ - public function processMessage ($messageContent, Receivable $packageInstance) { - // Get all filters and "run" them - foreach ($this->getFilters() as $filterInstance) { - // Try to process it - try { - $filterInstance->processMessage($messageContent, $packageInstance); - } catch (FilterChainException $e) { - // This exception can be thrown to just skip any further processing - self::createDebugInstance(__CLASS__)->debugOutput('Failed to execute lase filter ' . $filterInstance->__toString() . ': ' . $e->getMessage()); - break; - } - } // END - foreach - } -} - -// [EOF] -?> diff --git a/application/hub/main/filter/shutdown/node/class_NodeShutdownDeinitQueuesFilter.php b/application/hub/main/filter/shutdown/node/class_NodeShutdownDeinitQueuesFilter.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/filter/shutdown/node/class_NodeShutdownDeinitQueuesFilter.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/filter/task/apt-proxy/class_AptProxyTaskHandlerInitializerFilter.php b/application/hub/main/filter/task/apt-proxy/class_AptProxyTaskHandlerInitializerFilter.php index ead0fd4db..a39575967 100644 --- a/application/hub/main/filter/task/apt-proxy/class_AptProxyTaskHandlerInitializerFilter.php +++ b/application/hub/main/filter/task/apt-proxy/class_AptProxyTaskHandlerInitializerFilter.php @@ -51,7 +51,7 @@ class AptProxyTaskHandlerInitializerFilter extends BaseAptProxyFilter implements * @param $requestInstance An instance of a class with an Requestable interface * @param $responseInstance An instance of a class with an Responseable interface * @return void - * @throws FilterChainException If we need to interrupt the filter chain + * @throws FilterChainException If the filter chain needs to be interrupted * @todo 5% done */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { diff --git a/application/hub/main/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php b/application/hub/main/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php index e92256510..178f70743 100644 --- a/application/hub/main/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php +++ b/application/hub/main/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php @@ -51,7 +51,7 @@ class ChatTaskHandlerInitializerFilter extends BaseChatFilter implements Filtera * @param $requestInstance An instance of a class with an Requestable interface * @param $responseInstance An instance of a class with an Responseable interface * @return void - * @throws FilterChainException If we need to interrupt the filter chain + * @throws FilterChainException If the filter chain needs to be interrupted * @todo 5% done */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { diff --git a/application/hub/main/filter/task/crawler/class_CrawlerTaskHandlerInitializerFilter.php b/application/hub/main/filter/task/crawler/class_CrawlerTaskHandlerInitializerFilter.php index 15a297733..a119fec39 100644 --- a/application/hub/main/filter/task/crawler/class_CrawlerTaskHandlerInitializerFilter.php +++ b/application/hub/main/filter/task/crawler/class_CrawlerTaskHandlerInitializerFilter.php @@ -51,7 +51,7 @@ class CrawlerTaskHandlerInitializerFilter extends BaseCrawlerFilter implements F * @param $requestInstance An instance of a class with an Requestable interface * @param $responseInstance An instance of a class with an Responseable interface * @return void - * @throws FilterChainException If we need to interrupt the filter chain + * @throws FilterChainException If the filter chain needs to be interrupted * @todo 5% done */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { diff --git a/application/hub/main/filter/task/cruncher/class_CruncherTaskHandlerInitializerFilter.php b/application/hub/main/filter/task/cruncher/class_CruncherTaskHandlerInitializerFilter.php index c45646cfe..0b49446e9 100644 --- a/application/hub/main/filter/task/cruncher/class_CruncherTaskHandlerInitializerFilter.php +++ b/application/hub/main/filter/task/cruncher/class_CruncherTaskHandlerInitializerFilter.php @@ -51,7 +51,7 @@ class CruncherTaskHandlerInitializerFilter extends BaseCruncherFilter implements * @param $requestInstance An instance of a class with an Requestable interface * @param $responseInstance An instance of a class with an Responseable interface * @return void - * @throws FilterChainException If we need to interrupt the filter chain + * @throws FilterChainException If the filter chain needs to be interrupted * @todo 5% done */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { diff --git a/application/hub/main/filter/task/miner/class_MinerTaskHandlerInitializerFilter.php b/application/hub/main/filter/task/miner/class_MinerTaskHandlerInitializerFilter.php index 3bdbdd920..f8eb6deb4 100644 --- a/application/hub/main/filter/task/miner/class_MinerTaskHandlerInitializerFilter.php +++ b/application/hub/main/filter/task/miner/class_MinerTaskHandlerInitializerFilter.php @@ -51,7 +51,7 @@ class MinerTaskHandlerInitializerFilter extends BaseMinerFilter implements Filte * @param $requestInstance An instance of a class with an Requestable interface * @param $responseInstance An instance of a class with an Responseable interface * @return void - * @throws FilterChainException If we need to interrupt the filter chain + * @throws FilterChainException If the filter chain needs to be interrupted * @todo 5% done */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { diff --git a/application/hub/main/filter/task/node/class_NodeTaskHandlerInitializerFilter.php b/application/hub/main/filter/task/node/class_NodeTaskHandlerInitializerFilter.php index 836dda1de..a6728b693 100644 --- a/application/hub/main/filter/task/node/class_NodeTaskHandlerInitializerFilter.php +++ b/application/hub/main/filter/task/node/class_NodeTaskHandlerInitializerFilter.php @@ -51,7 +51,7 @@ class NodeTaskHandlerInitializerFilter extends BaseNodeFilter implements Filtera * @param $requestInstance An instance of a class with an Requestable interface * @param $responseInstance An instance of a class with an Responseable interface * @return void - * @throws FilterChainException If we need to interrupt the filter chain + * @throws FilterChainException If the filter chain needs to be interrupted * @todo Maybe some more tasks needs to be added? */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { diff --git a/application/hub/main/handler/message-types/class_NodeMessageAnnouncementHandler.php b/application/hub/main/handler/message-types/class_NodeMessageAnnouncementHandler.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/handler/message-types/class_NodeMessageAnnouncementHandler.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/announcement/class_HubAnnouncementHelper.php b/application/hub/main/helper/hub/announcement/class_HubAnnouncementHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/announcement/class_HubAnnouncementHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/announcement/class_HubDescriptorHelper.php b/application/hub/main/helper/hub/announcement/class_HubDescriptorHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/announcement/class_HubDescriptorHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/answer/announcement/class_NodeAnnouncementMessageAnswerHelper.php b/application/hub/main/helper/hub/answer/announcement/class_NodeAnnouncementMessageAnswerHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/answer/announcement/class_NodeAnnouncementMessageAnswerHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/answer/class_BaseHubAnswerHelper.php b/application/hub/main/helper/hub/answer/class_BaseHubAnswerHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/answer/class_BaseHubAnswerHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/answer/requests/class_NodeRequestNodeListMessageAnswerHelper.php b/application/hub/main/helper/hub/answer/requests/class_NodeRequestNodeListMessageAnswerHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/answer/requests/class_NodeRequestNodeListMessageAnswerHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/class_BaseHubHelper.php b/application/hub/main/helper/hub/class_BaseHubHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/class_BaseHubHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/connection/class_HubSelfConnectHelper.php b/application/hub/main/helper/hub/connection/class_HubSelfConnectHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/connection/class_HubSelfConnectHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/helper/hub/requests/class_NodeRequestNodeListHelper.php b/application/hub/main/helper/hub/requests/class_NodeRequestNodeListHelper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/helper/hub/requests/class_NodeRequestNodeListHelper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/lists/query/local/class_LocalQueryList.php b/application/hub/main/lists/query/local/class_LocalQueryList.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/lists/query/local/class_LocalQueryList.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/queries/class_BaseQuery.php b/application/hub/main/queries/class_BaseQuery.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/queries/class_BaseQuery.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/queries/local/class_LocalQuery.php b/application/hub/main/queries/local/class_LocalQuery.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/queries/local/class_LocalQuery.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/queues/class_BaseQueue.php b/application/hub/main/queues/class_BaseQueue.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/queues/class_BaseQueue.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/queues/peer/class_LocalPeerQueue.php b/application/hub/main/queues/peer/class_LocalPeerQueue.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/queues/peer/class_LocalPeerQueue.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/tasks/hub/announcement/class_HubSelfAnnouncementTask.php b/application/hub/main/tasks/hub/announcement/class_HubSelfAnnouncementTask.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/tasks/hub/announcement/class_HubSelfAnnouncementTask.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/tasks/hub/chunks/class_HubChunkAssemblerTask.php b/application/hub/main/tasks/hub/chunks/class_HubChunkAssemblerTask.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/tasks/hub/chunks/class_HubChunkAssemblerTask.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/tasks/hub/class_HubSelfConnectTask.php b/application/hub/main/tasks/hub/class_HubSelfConnectTask.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/tasks/hub/class_HubSelfConnectTask.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/tasks/hub/class_HubSocketListenerTask.php b/application/hub/main/tasks/hub/class_HubSocketListenerTask.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/tasks/hub/class_HubSocketListenerTask.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/tasks/hub/decoder/class_HubPackageDecoderTask.php b/application/hub/main/tasks/hub/decoder/class_HubPackageDecoderTask.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/tasks/hub/decoder/class_HubPackageDecoderTask.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/tasks/hub/ping/class_HubPingTask.php b/application/hub/main/tasks/hub/ping/class_HubPingTask.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/tasks/hub/ping/class_HubPingTask.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/tasks/hub/update/class_HubUpdateCheckTask.php b/application/hub/main/tasks/hub/update/class_HubUpdateCheckTask.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/tasks/hub/update/class_HubUpdateCheckTask.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/template/dht/class_XmlBootstrapTemplateEngine.php b/application/hub/main/template/dht/class_XmlBootstrapTemplateEngine.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/template/dht/class_XmlBootstrapTemplateEngine.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/application/hub/main/wrapper/node/class_NodeListDatabaseWrapper.php b/application/hub/main/wrapper/node/class_NodeListDatabaseWrapper.php deleted file mode 100644 index f551ef47b..000000000 --- a/application/hub/main/wrapper/node/class_NodeListDatabaseWrapper.php +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/contrib/remove-deprecated.sh b/contrib/remove-deprecated.sh index ed3424727..881929d27 100755 --- a/contrib/remove-deprecated.sh +++ b/contrib/remove-deprecated.sh @@ -6,11 +6,11 @@ if ! test -e "index.php"; then fi echo "$0: Searching for deprecated PHP scripts ..." -LIST1=`find -type f -name "*.php" -size 24c -exec grep -H "@DEPRECATED" {} \;` +LIST1=`find application/hub/ -type f -name "*.php" -size 24c -exec grep -H "@DEPRECATED" {} \;` LIST="${LIST1} ${LIST2}" if test "${LIST}" != " "; then - echo "${LIST}" | cut -d ":" -f 1 | xargs svn --force del + echo "${LIST}" | cut -d ":" -f 1 | xargs git rm sh ./todo-builder.sh fi diff --git a/docs/TODOs.txt b/docs/TODOs.txt index df870a106..1b260bfa2 100644 --- a/docs/TODOs.txt +++ b/docs/TODOs.txt @@ -1,38 +1,41 @@ ### WARNING: THIS FILE IS AUTO-GENERATED BY ./todo-builder.sh ### ### DO NOT EDIT THIS FILE. ### -./application/hub/config.php:745:// @TODO This and the next value is very static again -./application/hub/config.php:809:// @TODO This is very static, rewrite it to more flexible +./application/hub/config.php:757:// @TODO This and the next value is very static again +./application/hub/config.php:821:// @TODO This is very static, rewrite it to more flexible ./application/hub/interfaces/apt-proxy/class_AptProxy.php:10: * @todo We need to find a better name for this interface ./application/hub/interfaces/chat/class_Chatter.php:10: * @todo We need to find a better name for this interface +./application/hub/interfaces/crawler/class_Crawler.php:10: * @todo We need to find a better name for this interface ./application/hub/interfaces/cruncher/class_CruncherHelper.php:10: * @todo We need to find a better name for this interface ./application/hub/interfaces/helper/connections/class_ConnectionHelper.php:10: * @todo Please find another name for this interface ./application/hub/interfaces/helper/connections/class_ConnectionHelper.php:38: * @todo We may want to implement a filter for ease notification of other objects like our pool ./application/hub/interfaces/helper/messages/class_MessageHelper.php:10: * @todo Please find another name for this interface ./application/hub/interfaces/helper/nodes/class_NodeHelper.php:10: * @todo We need to find a better name for this interface +./application/hub/interfaces/miner/class_MinerHelper.php:10: * @todo We need to find a better name for this interface ./application/hub/interfaces/wrapper/class_NodeDhtWrapper.php:122: * @todo Add minimum/maximum age limitations ./application/hub/interfaces/wrapper/class_NodeDhtWrapper.php:132: * @todo Add timestamp to dataset instance -./application/hub/main/class_BaseHubSystem.php:500: // @TODO On some systems it is 134, on some 107? +./application/hub/main/chains/class_PackageFilterChain.php:54: * @todo This may be slow if a message with a lot tags arrived +./application/hub/main/class_BaseHubSystem.php:528: // @TODO On some systems it is 134, on some 107? ./application/hub/main/commands/console/class_HubConsoleAptProxyCommand.php:107: * @todo Should we add some more filters? ./application/hub/main/commands/console/class_HubConsoleAptProxyCommand.php:58: * @todo Try to create a AptProxyActivationTask or so ./application/hub/main/commands/console/class_HubConsoleChatCommand.php:107: * @todo Should we add some more filters? ./application/hub/main/commands/console/class_HubConsoleChatCommand.php:58: * @todo Try to create a ChatActivationTask or so +./application/hub/main/commands/console/class_HubConsoleCrawlerCommand.php:107: * @todo Should we add some more filters? +./application/hub/main/commands/console/class_HubConsoleCrawlerCommand.php:58: * @todo Try to create a CrawlerActivationTask or so ./application/hub/main/commands/console/class_HubConsoleCruncherCommand.php:107: * @todo Should we add some more filters? ./application/hub/main/commands/console/class_HubConsoleCruncherCommand.php:58: * @todo Try to create a CruncherActivationTask or so ./application/hub/main/commands/console/class_HubConsoleMainCommand.php:114: * @todo Should we add some more filters? ./application/hub/main/commands/console/class_HubConsoleMainCommand.php:58: * @todo Try to create a HubActivationTask or so +./application/hub/main/commands/console/class_HubConsoleMinerCommand.php:107: * @todo Should we add some more filters? +./application/hub/main/commands/console/class_HubConsoleMinerCommand.php:58: * @todo Try to create a MinerActivationTask or so ./application/hub/main/cruncher/class_BaseHubCruncher.php:200: * @todo Try to make this method more generic so we can move it in BaseFrameworkSystem ./application/hub/main/cruncher/mcrypt/class_HubMcryptCruncher.php:108: * @todo Implement this method ./application/hub/main/cruncher/mcrypt/class_HubMcryptCruncher.php:138: * @todo 0% done ./application/hub/main/cruncher/mcrypt/class_HubMcryptCruncher.php:98: // @TODO Implement this method -./application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php:383: // @TODO Unimplemented part -./application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php:435: * @todo Add minimum/maximum age limitations -./application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php:463: * @todo Add timestamp to dataset instance -./application/hub/main/database/wrapper/states/class_PeerStateLookupDatabaseWrapper.php:174: * @todo Unfinished area -./application/hub/main/database/wrapper/states/class_PeerStateLookupDatabaseWrapper.php:216: * @todo Unfinished area ./application/hub/main/dht/class_BaseDht.php:129: * @todo Add minimum/maximum age limitations -./application/hub/main/dht/class_BaseDht.php:162: // @TODO Maybe add more small checks? -./application/hub/main/dht/class_BaseDht.php:204: * @todo Find out if loadDescriptorXml() can be called only once to avoid a lot methods working. -./application/hub/main/dht/class_BaseDht.php:244: * @todo 0% done +./application/hub/main/dht/class_BaseDht.php:163: // @TODO Maybe add more small checks? +./application/hub/main/dht/class_BaseDht.php:205: * @todo Find out if loadDescriptorXml() can be called only once to avoid a lot methods working. +./application/hub/main/dht/class_BaseDht.php:245: * @todo 0% done +./application/hub/main/dht/class_BaseDht.php:256: * @todo Switch flag 'accept_bootstrap' ./application/hub/main/dht/class_BaseDht.php:89: * @todo Find more to do here ./application/hub/main/dht/node/class_NodeDhtFacade.php:61: * @todo Does this data need to be enriched with more meta data? ./application/hub/main/discovery/package/class_PackageRecipientDiscovery.php:86: * @todo Add some validation of recipient field, e.g. ip:port is found @@ -43,26 +46,37 @@ ./application/hub/main/filter/apt-proxy/class_AptProxyWelcomeTeaserFilter.php:55: * @todo Handle over the $responseInstance to outputConsoleTeaser() ./application/hub/main/filter/bootstrap/apt-proxy/class_AptProxyBootstrapGenericActivationFilter.php:54: * @todo Maybe we want to do somthing more here? ./application/hub/main/filter/bootstrap/chat/class_ChatBootstrapGenericActivationFilter.php:54: * @todo Maybe we want to do somthing more here? +./application/hub/main/filter/bootstrap/crawler/class_CrawlerBootstrapGenericActivationFilter.php:54: * @todo Maybe we want to do somthing more here? ./application/hub/main/filter/bootstrap/cruncher/class_CruncherBootstrapBufferQueueInitializerFilter.php:54: * @todo 0% done ./application/hub/main/filter/bootstrap/cruncher/class_CruncherBootstrapGenericActivationFilter.php:54: * @todo Maybe we want to do somthing more here? +./application/hub/main/filter/bootstrap/miner/class_MinerBootstrapBufferQueueInitializerFilter.php:54: * @todo 0% done +./application/hub/main/filter/bootstrap/miner/class_MinerBootstrapGenericActivationFilter.php:54: * @todo Maybe we want to do somthing more here? ./application/hub/main/filter/bootstrap/node/class_NodeBootstrapGeneratePrivateKeyFilter.php:54: * @todo 0% done -./application/hub/main/filter/chains/class_PackageFilterChain.php:54: * @todo This may be slow if a message with a lot tags arrived ./application/hub/main/filter/chat/class_ChatInitializationFilter.php:54: * @todo 0% done ./application/hub/main/filter/chat/class_ChatPhpRequirementsFilter.php:55: * @todo Add more test and try to add an extra message to the thrown exception ./application/hub/main/filter/chat/class_ChatWelcomeTeaserFilter.php:55: * @todo Handle over the $responseInstance to outputConsoleTeaser() ./application/hub/main/filter/class_BaseHubFilter.php:56: * @todo Exceptions from renderXmlContent() are currently unhandled +./application/hub/main/filter/crawler/class_CrawlerInitializationFilter.php:54: * @todo 0% done +./application/hub/main/filter/crawler/class_CrawlerPhpRequirementsFilter.php:55: * @todo Add more test and try to add an extra message to the thrown exception +./application/hub/main/filter/crawler/class_CrawlerWelcomeTeaserFilter.php:55: * @todo Handle over the $responseInstance to outputConsoleTeaser() ./application/hub/main/filter/cruncher/class_CruncherInitializationFilter.php:54: * @todo 0% done ./application/hub/main/filter/cruncher/class_CruncherInitializationFilter.php:87: // @TODO Can we rewrite this to app_exit() ? ./application/hub/main/filter/cruncher/class_CruncherPhpRequirementsFilter.php:55: * @todo Add more test and try to add an extra message to the thrown exception ./application/hub/main/filter/cruncher/class_CruncherWelcomeTeaserFilter.php:55: * @todo Handle over the $responseInstance to outputConsoleTeaser() -./application/hub/main/filter/node/class_NodeInitializationFilter.php:87: // @TODO Can we rewrite this to app_exit() ? +./application/hub/main/filter/miner/class_MinerInitializationFilter.php:54: * @todo 0% done +./application/hub/main/filter/miner/class_MinerInitializationFilter.php:87: // @TODO Can we rewrite this to app_exit() ? +./application/hub/main/filter/miner/class_MinerPhpRequirementsFilter.php:55: * @todo Add more test and try to add an extra message to the thrown exception +./application/hub/main/filter/miner/class_MinerWelcomeTeaserFilter.php:55: * @todo Handle over the $responseInstance to outputConsoleTeaser() +./application/hub/main/filter/node/class_NodeInitializationFilter.php:62: // @TODO Can we rewrite this to app_exit() ? ./application/hub/main/filter/node/class_NodePhpRequirementsFilter.php:55: * @todo Add more test and try to add an extra message to the thrown exception ./application/hub/main/filter/node/class_NodeWelcomeTeaserFilter.php:55: * @todo Handle over the $responseInstance to outputConsoleTeaser() ./application/hub/main/filter/shutdown/node/class_NodeShutdownFlushNodeListFilter.php:55: * @todo 0% done ./application/hub/main/filter/shutdown/node/class_NodeShutdownTaskHandlerFilter.php:55: * @todo 0% done ./application/hub/main/filter/task/apt-proxy/class_AptProxyTaskHandlerInitializerFilter.php:55: * @todo 5% done ./application/hub/main/filter/task/chat/class_ChatTaskHandlerInitializerFilter.php:55: * @todo 5% done +./application/hub/main/filter/task/crawler/class_CrawlerTaskHandlerInitializerFilter.php:55: * @todo 5% done ./application/hub/main/filter/task/cruncher/class_CruncherTaskHandlerInitializerFilter.php:55: * @todo 5% done +./application/hub/main/filter/task/miner/class_MinerTaskHandlerInitializerFilter.php:55: * @todo 5% done ./application/hub/main/filter/task/node/class_NodeTaskHandlerInitializerFilter.php:55: * @todo Maybe some more tasks needs to be added? ./application/hub/main/handler/answer-status/announcement/class_AnnouncementAnswerOkayHandler.php:64: * @todo Do some more here: Handle karma, et cetera? ./application/hub/main/handler/answer-status/requests/class_RequestNodeListAnswerOkayHandler.php:103: * @todo 0% done @@ -71,7 +85,7 @@ ./application/hub/main/handler/class_BaseHandler.php:66: * @todo Rewrite this to use DHT ./application/hub/main/handler/message-types/answer/class_NodeMessageDhtBootstrapAnswerHandler.php:93: * @todo ~30% done ./application/hub/main/handler/message-types/self-connect/class_NodeMessageSelfConnectHandler.php:71: // @TODO Throw an exception here instead of dying -./application/hub/main/handler/network/class_BaseRawDataHandler.php:147: * @todo This method will be moved to a better place +./application/hub/main/handler/network/class_BaseRawDataHandler.php:148: * @todo This method will be moved to a better place ./application/hub/main/handler/network/udp/class_UdpRawDataHandler.php:58: * @todo 0% ./application/hub/main/handler/tasks/class_TaskHandler.php:139: // @TODO Messurement can be added around this call ./application/hub/main/helper/connection/class_BaseConnectionHelper.php:204: // @TODO Move this to the socket error handler @@ -104,6 +118,10 @@ ./application/hub/main/listener/udp/class_UdpListener.php:153: * @todo ~50% done ./application/hub/main/lists/class_BaseList.php:276: // @TODO Extend this somehow? ./application/hub/main/lists/groups/class_ListGroupList.php:61: * @todo 0% done +./application/hub/main/miner/chash/class_HubChashMiner.php:108: * @todo Implement this method +./application/hub/main/miner/chash/class_HubChashMiner.php:138: * @todo 0% done +./application/hub/main/miner/chash/class_HubChashMiner.php:98: // @TODO Implement this method +./application/hub/main/miner/class_BaseHubMiner.php:200: * @todo Try to make this method more generic so we can move it in BaseFrameworkSystem ./application/hub/main/nodes/boot/class_HubBootNode.php:110: // @TODO Add some filters here ./application/hub/main/nodes/boot/class_HubBootNode.php:58: * @todo add some more special bootstrap things for this boot node ./application/hub/main/nodes/class_BaseHubNode.php:120: * @todo Make this code more generic and move it to CryptoHelper or @@ -115,10 +133,13 @@ ./application/hub/main/nodes/class_BaseHubNode.php:780: * @todo Handle thrown exception ./application/hub/main/nodes/list/class_HubListNode.php:58: * @todo Implement more bootstrap steps ./application/hub/main/nodes/list/class_HubListNode.php:79: // @TODO Add some filters here +./application/hub/main/nodes/list/class_HubListNode.php:88: * @todo 0% done ./application/hub/main/nodes/master/class_HubMasterNode.php:58: * @todo Implement this method ./application/hub/main/nodes/master/class_HubMasterNode.php:83: // @TODO Add some filters here +./application/hub/main/nodes/master/class_HubMasterNode.php:92: * @todo 0% done ./application/hub/main/nodes/regular/class_HubRegularNode.php:58: * @todo Implement this method ./application/hub/main/nodes/regular/class_HubRegularNode.php:79: // @TODO Add some filters here +./application/hub/main/nodes/regular/class_HubRegularNode.php:88: * @todo 0% done ./application/hub/main/package/class_NetworkPackage.php:1117: * @todo This may be enchanced for outgoing packages? ./application/hub/main/package/class_NetworkPackage.php:1148: * @todo Unsupported feature of "signed" messages commented out ./application/hub/main/package/class_NetworkPackage.php:1237: * @todo Implement verification of all sent tags here? @@ -135,6 +156,8 @@ ./application/hub/main/producer/cruncher/keys/class_CruncherKeyProducer.php:72: * @todo ~30% done ./application/hub/main/producer/cruncher/work_units/class_CruncherTestUnitProducer.php:79: * @todo ~60% done ./application/hub/main/producer/cruncher/work_units/class_CruncherTestUnitProducer.php:88: // @TODO Unfinished work here +./application/hub/main/producer/miner/blocks/class_MinerTestGenesisBlockProducer.php:53: * @todo 0% done +./application/hub/main/producer/miner/blocks/class_MinerTestGenesisBlockProducer.php:64: * @todo 0% done ./application/hub/main/registry/socket/class_SocketRegistry.php:71: // @TODO Tested again base class, rewrite it to a generic interface! ./application/hub/main/resolver/state/peer/class_PeerStateResolver.php:59: * @todo ~30% done ./application/hub/main/states/dht/class_BaseDhtState.php:10: * @todo Create generic DHT interface @@ -180,16 +203,21 @@ ./application/hub/main/template/requests/class_XmlRequestNodeListTemplateEngine.php:10: * @todo This template engine does not make use of setTemplateType() ./application/hub/main/template/requests/class_XmlRequestNodeListTemplateEngine.php:74: * @todo Find something useful with this! ./application/hub/main/tools/class_HubTools.php:177: * @TODO Please try to encapsulate this PHP call into an own class +./application/hub/main/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php:406: // @TODO Unimplemented part +./application/hub/main/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php:464: * @todo Add minimum/maximum age limitations +./application/hub/main/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php:492: * @todo Add timestamp to dataset instance +./application/hub/main/wrapper/states/class_PeerStateLookupDatabaseWrapper.php:174: * @todo Unfinished area +./application/hub/main/wrapper/states/class_PeerStateLookupDatabaseWrapper.php:216: * @todo Unfinished area ./core/inc/classes/exceptions/main/class_MissingMethodException.php:13: * @todo Try to rewrite user/guest login classes and mark this exception as deprecated ./core/inc/classes/exceptions/main/class_NoConfigEntryException.php:10: * @todo Rename this class to NoFoundEntryException ./core/inc/classes/interfaces/class_FrameworkInterface.php:11: * @todo Find a better name for this interface ./core/inc/classes/interfaces/criteria/extended/class_LocalSearchCriteria.php:30: * @todo Find a nice casting here. (int) allows until and including 32766. ./core/inc/classes/interfaces/criteria/extended/class_LocalSearchCriteria.php:54: * @todo Find a nice casting here. (int) allows until and including 32766. -./core/inc/classes/main/class_BaseFrameworkSystem.php:1777: * @todo Write a logging mechanism for productive mode -./core/inc/classes/main/class_BaseFrameworkSystem.php:1792: // @TODO Finish this part! +./core/inc/classes/main/class_BaseFrameworkSystem.php:1778: * @todo Write a logging mechanism for productive mode +./core/inc/classes/main/class_BaseFrameworkSystem.php:1793: // @TODO Finish this part! ./core/inc/classes/main/class_BaseFrameworkSystem.php:205: // @todo Try to clean these constants up -./core/inc/classes/main/class_BaseFrameworkSystem.php:429: // @TODO __CLASS__ does always return BaseFrameworkSystem but not the extending (=child) class -./core/inc/classes/main/class_BaseFrameworkSystem.php:503: * @todo SearchableResult and UpdateableResult shall have a super interface to use here +./core/inc/classes/main/class_BaseFrameworkSystem.php:430: // @TODO __CLASS__ does always return BaseFrameworkSystem but not the extending (=child) class +./core/inc/classes/main/class_BaseFrameworkSystem.php:504: * @todo SearchableResult and UpdateableResult shall have a super interface to use here ./core/inc/classes/main/commands/web/class_WebLoginAreaCommand.php:64: * @todo Add some stuff here: Some personal data, app/game related data ./core/inc/classes/main/commands/web/class_WebProblemCommand.php:58: * @todo 0% done ./core/inc/classes/main/commands/web/class_WebStatusCommand.php:58: * @todo 0% done @@ -292,50 +320,7 @@ ./core/inc/selector.php:11: * @todo Minimize these includes ./index.php:43: * @todo This method is old code and needs heavy rewrite and should be moved to ApplicationHelper ### ### DEPRECATION FOLLOWS: ### ### -./application/hub/exceptions/hub/class_HubAlreadyAnnouncedException.php:2:// @DEPRECATED -./application/hub/interfaces/dht/class_Dht.php:2:// @DEPRECATED -./application/hub/interfaces/helper/hub/class_HelpableHub.php:2:// @DEPRECATED -./application/hub/interfaces/nodes/class_NodeHelper.php:2:// @DEPRECATED -./application/hub/interfaces/query/class_Queryable.php:2:// @DEPRECATED -./application/hub/interfaces/queues/class_Queueable.php:2:// @DEPRECATED -./application/hub/interfaces/visitor/connector/class_QueryConnectorVisitor.php:2:// @DEPRECATED -./application/hub/interfaces/visitor/connector/class_QueueConnectorVisitor.php:2:// @DEPRECATED -./application/hub/interfaces/visitor/query/class_QueryVisitor.php:2:// @DEPRECATED -./application/hub/interfaces/visitor/queue/class_QueueVisitor.php:2:// @DEPRECATED -./application/hub/interfaces/wrapper/class_NodeListWrapper.php:2:// @DEPRECATED -./application/hub/main/connectors/class_BaseConnector.php:2:// @DEPRECATED -./application/hub/main/connectors/query/class_BaseQueryConnector.php:2:// @DEPRECATED -./application/hub/main/connectors/query/local/class_LocalQueryConnector.php:2:// @DEPRECATED -./application/hub/main/connectors/queues/class_BaseQueueConnector.php:2:// @DEPRECATED -./application/hub/main/connectors/queues/local/class_LocalQueueConnector.php:2:// @DEPRECATED -./application/hub/main/database/wrapper/node/class_NodeListDatabaseWrapper.php:2:// @DEPRECATED -./application/hub/main/filter/activation/node/class_NodeActivationSelfAnnouncementFilter.php:2:// @DEPRECATED -./application/hub/main/filter/bootstrap/node/class_NodeBootstrapInitQueuesFilter.php:2:// @DEPRECATED -./application/hub/main/filter/bootstrap/node/class_NodeBootstrapRestoreNodeListFilter.php:2:// @DEPRECATED -./application/hub/main/filter/shutdown/node/class_NodeShutdownDeinitQueuesFilter.php:2:// @DEPRECATED -./application/hub/main/handler/message-types/class_NodeMessageAnnouncementHandler.php:2:// @DEPRECATED -./application/hub/main/helper/hub/announcement/class_HubAnnouncementHelper.php:2:// @DEPRECATED -./application/hub/main/helper/hub/announcement/class_HubDescriptorHelper.php:2:// @DEPRECATED -./application/hub/main/helper/hub/answer/announcement/class_NodeAnnouncementMessageAnswerHelper.php:2:// @DEPRECATED -./application/hub/main/helper/hub/answer/class_BaseHubAnswerHelper.php:2:// @DEPRECATED -./application/hub/main/helper/hub/answer/requests/class_NodeRequestNodeListMessageAnswerHelper.php:2:// @DEPRECATED -./application/hub/main/helper/hub/class_BaseHubHelper.php:2:// @DEPRECATED -./application/hub/main/helper/hub/connection/class_HubSelfConnectHelper.php:2:// @DEPRECATED -./application/hub/main/helper/hub/requests/class_NodeRequestNodeListHelper.php:2:// @DEPRECATED -./application/hub/main/lists/query/local/class_LocalQueryList.php:2:// @DEPRECATED ./application/hub/main/nodes/class_BaseHubNode.php:56: * @deprecated -./application/hub/main/queries/class_BaseQuery.php:2:// @DEPRECATED -./application/hub/main/queries/local/class_LocalQuery.php:2:// @DEPRECATED -./application/hub/main/queues/class_BaseQueue.php:2:// @DEPRECATED -./application/hub/main/queues/peer/class_LocalPeerQueue.php:2:// @DEPRECATED -./application/hub/main/tasks/hub/announcement/class_HubSelfAnnouncementTask.php:2:// @DEPRECATED -./application/hub/main/tasks/hub/chunks/class_HubChunkAssemblerTask.php:2:// @DEPRECATED -./application/hub/main/tasks/hub/class_HubSelfConnectTask.php:2:// @DEPRECATED -./application/hub/main/tasks/hub/class_HubSocketListenerTask.php:2:// @DEPRECATED -./application/hub/main/tasks/hub/decoder/class_HubPackageDecoderTask.php:2:// @DEPRECATED -./application/hub/main/tasks/hub/ping/class_HubPingTask.php:2:// @DEPRECATED -./application/hub/main/tasks/hub/update/class_HubUpdateCheckTask.php:2:// @DEPRECATED -./application/hub/main/template/dht/class_XmlBootstrapTemplateEngine.php:2:// @DEPRECATED ./core/inc/classes/exceptions/main/class_MissingMethodException.php:14: * @deprecated Please do no longer use this exception ./core/inc/classes/interfaces/database/backend/class_DatabaseFrontendInterface.php:2:// @DEPRECATED ./core/inc/classes/interfaces/database/frontend/class_DatabaseFrontendInterface.php:2:// @DEPRECATED