]> git.mxchange.org Git - hub.git/commitdiff
Removed also deprecated queues/queries as there are now stacks
authorRoland Häder <roland@mxchange.org>
Fri, 1 Feb 2013 22:50:01 +0000 (22:50 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 1 Feb 2013 22:50:01 +0000 (22:50 +0000)
application/hub/config.php
application/hub/interfaces/helper/nodes/class_NodeHelper.php
application/hub/main/commands/console/class_HubConsoleMainCommand.php
application/hub/main/filter/bootstrap/node/class_NodeBootstrapInitQueuesFilter.php
application/hub/main/filter/shutdown/node/class_NodeShutdownDeinitQueuesFilter.php
application/hub/main/nodes/boot/class_HubBootNode.php
application/hub/main/nodes/class_BaseHubNode.php
application/hub/main/nodes/list/class_HubListNode.php
application/hub/main/nodes/master/class_HubMasterNode.php
application/hub/main/nodes/regular/class_HubRegularNode.php

index 8f932df764abf43a034155743a7c967d7137433b..692d382246b4c8937000b080b5b790e668724d66 100644 (file)
@@ -171,9 +171,6 @@ $cfg->setConfigEntry('node_bootstrap_generate_sessionid_filter', 'NodeBootstrapG
 // CFG: NODE-BOOTSTRAP-GENERATE-PRIVATE-KEY-FILTER
 $cfg->setConfigEntry('node_bootstrap_generate_private_key_filter', 'NodeBootstrapGeneratePrivateKeyFilter');
 
-// CFG: NODE-BOOTSTRAP-INIT-QUEUES-FILTER
-$cfg->setConfigEntry('node_bootstrap_init_queues_filter', 'NodeBootstrapInitQueuesFilter');
-
 // CFG: NODE-BOOTSTRAP-EXTRA-BOOTSTRAPPING-FILTER
 $cfg->setConfigEntry('node_bootstrap_extra_bootstrapping_filter', 'NodeBootstrapExtraBootstrappingFilter');
 
@@ -183,9 +180,6 @@ $cfg->setConfigEntry('node_bootstrap_listener_pool_filter', 'NodeBootstrapListen
 // CFG: NODE-SHUTDOWN-FLUSH-NODE-LIST-FILTER
 $cfg->setConfigEntry('node_shutdown_flush_node_list_filter', 'NodeShutdownFlushNodeListFilter');
 
-// CFG: NODE-SHUTDOWN-DEINIT-QUEUES-FILTER
-$cfg->setConfigEntry('node_shutdown_deinit_queues_filter', 'NodeShutdownDeinitQueuesFilter');
-
 // CFG: NODE-SHUTDOWN-TASK-HANDLER-FILTER
 $cfg->setConfigEntry('node_shutdown_task_handler_filter', 'NodeShutdownTaskHandlerFilter');
 
index 284ecea7ee4184a22095a1dff7eb942f84841059..eaaf5879cd74694e82d20424668a80c54958195a 100644 (file)
@@ -32,13 +32,6 @@ interface NodeHelper extends Helper {
         */
        function doBootstrapping ();
 
-       /**
-        * Initializes hub-specific queues
-        *
-        * @return      void
-        */
-       function initQueues ();
-
        /**
         * Outputs the console teaser. This should only be executed on startup or
         * full restarts. This method generates some space around the teaser.
index 036a38ca0287a78565b8b67c5934c7425a12b643..45385ea7b6cdc2c3de8f4f7110421269603f2d25 100644 (file)
@@ -123,7 +123,6 @@ class HubConsoleMainCommand extends BaseCommand implements Commandable {
                $controllerInstance->addBootstrapFilter(ObjectFactory::createObjectByConfiguredName('node_bootstrap_generate_nodeid_filter'));
                $controllerInstance->addBootstrapFilter(ObjectFactory::createObjectByConfiguredName('node_bootstrap_generate_sessionid_filter'));
                $controllerInstance->addBootstrapFilter(ObjectFactory::createObjectByConfiguredName('node_bootstrap_generate_private_key_filter'));
-               $controllerInstance->addBootstrapFilter(ObjectFactory::createObjectByConfiguredName('node_bootstrap_init_queues_filter'));
                $controllerInstance->addBootstrapFilter(ObjectFactory::createObjectByConfiguredName('node_bootstrap_extra_bootstrapping_filter'));
                $controllerInstance->addBootstrapFilter(ObjectFactory::createObjectByConfiguredName('node_bootstrap_listener_pool_filter'));
 
@@ -132,7 +131,6 @@ class HubConsoleMainCommand extends BaseCommand implements Commandable {
 
                // Add shutdown filters
                $controllerInstance->addShutdownFilter(ObjectFactory::createObjectByConfiguredName('node_shutdown_flush_node_list_filter'));
-               $controllerInstance->addShutdownFilter(ObjectFactory::createObjectByConfiguredName('node_shutdown_deinit_queues_filter'));
                $controllerInstance->addShutdownFilter(ObjectFactory::createObjectByConfiguredName('node_shutdown_task_handler_filter'));
 
                // This is the last generic shutdown filter
index 63371d3e22101146ca9d29d70d4a4d17c0dbff09..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,66 +1,3 @@
 <?php
-/**
- * A InitQueues filter for bootstrapping
- *
- * @author             Roland Haeder <webmaster@ship-simu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Node Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.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 <http://www.gnu.org/licenses/>.
- */
-class NodeBootstrapInitQueuesFilter extends BaseNodeFilter implements Filterable {
-       /**
-        * Protected constructor
-        *
-        * @return      void
-        */
-       protected function __construct () {
-               // Call parent constructor
-               parent::__construct(__CLASS__);
-       }
-
-       /**
-        * Creates an instance of this filter class
-        *
-        * @return      $filterInstance         An instance of this filter class
-        */
-       public static final function createNodeBootstrapInitQueuesFilter () {
-               // Get a new instance
-               $filterInstance = new NodeBootstrapInitQueuesFilter();
-
-               // Return the instance
-               return $filterInstance;
-       }
-
-       /**
-        * Executes the filter with given request and response objects
-        *
-        * @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 $nodeInstance is null (no NullPointerException here)
-        */
-       public function execute (Requestable $requestInstance, Responseable $responseInstance) {
-               // Get node instance
-               $nodeInstance = Registry::getRegistry()->getInstance('node');
-
-               // Now init the queues
-               $nodeInstance->initQueues();
-       }
-}
-
-// [EOF]
+// @DEPRECATED
 ?>
index facfedaa95c85b7959b5734de3860dd1ad805c8b..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,76 +1,3 @@
 <?php
-/**
- * A DeinitQueues filter for shutting down the node.
- *
- * @author             Roland Haeder <webmaster@ship-simu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.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 <http://www.gnu.org/licenses/>.
- */
-class NodeShutdownDeinitQueuesFilter extends BaseNodeFilter implements Filterable {
-       /**
-        * Protected constructor
-        *
-        * @return      void
-        */
-       protected function __construct () {
-               // Call parent constructor
-               parent::__construct(__CLASS__);
-       }
-
-       /**
-        * Creates an instance of this filter class
-        *
-        * @return      $filterInstance         An instance of this filter class
-        */
-       public static final function createNodeShutdownDeinitQueuesFilter () {
-               // Get a new instance
-               $filterInstance = new NodeShutdownDeinitQueuesFilter();
-
-               // Return the instance
-               return $filterInstance;
-       }
-
-       /**
-        * Executes the filter with given request and response objects
-        *
-        * @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 $nodeInstance is null (no NullPointerException here)
-        * @todo        0% done
-        */
-       public function execute (Requestable $requestInstance, Responseable $responseInstance) {
-               // Get node instance
-               $nodeInstance = Registry::getRegistry()->getInstance('node');
-
-               // Get query instance
-               $connectorInstance = $nodeInstance->getQueryConnectorInstance();
-
-               // Sanity-check on it
-               if (is_null($connectorInstance)) {
-                       // Throws a FilterChainException to stop further processing
-                       throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
-               } // END - if
-
-               // Now shutdown this one done
-               $connectorInstance->doShutdown();
-       }
-}
-
-// [EOF]
+// @DEPRECATED
 ?>
index bc62fcb1ce8b789f4f4ded142d9b5af0cab86a46..ef05db54ac23e2889c1c9258530632d32c1b8515 100644 (file)
@@ -95,18 +95,6 @@ class HubBootNode extends BaseHubNode implements NodeHelper, Registerable {
                $this->partialStub('Please implement more bootsrapping steps.');
        }
 
-       /**
-        * Initializes hub-specific queues
-        *
-        * @return      void
-        * @todo        Unfinished method
-        */
-       public function initQueues () {
-               // Call generic queues every hub may have, like the core queue
-               parent::initGenericQueues();
-               $this->partialStub('Please add some more hub-specific queues.');
-       }
-
        /**
         * Add some node-specific filters
         *
index 163ff96f822c51d7d1ee52d46a00396b74f161b8..6af32bc7323504571d3f5cace154e52ec591f0f0 100644 (file)
@@ -396,31 +396,6 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
                }
        }
 
-       /**
-        * Initializes queues which every node needs
-        *
-        * @return      void
-        */
-       protected function initGenericQueues () {
-               // Debug message
-               self::createDebugInstance(__CLASS__)->debugOutput('BOOTSTRAP: Initialize queues: START');
-
-               // Set the query connector instance
-               $this->setQueryConnectorInstance(ObjectFactory::createObjectByConfiguredName('query_connector_class', array($this)));
-
-               // Run a test query
-               $this->getQueryConnectorInstance()->doTestQuery();
-
-               // Set the queue connector instance
-               $this->setQueueConnectorInstance(ObjectFactory::createObjectByConfiguredName('queue_connector_class', array($this)));
-
-               // Run a test queue
-               $this->getQueueConnectorInstance()->doTestQueue();
-
-               // Debug message
-               self::createDebugInstance(__CLASS__)->debugOutput('BOOTSTRAP: Initialize queues: FINISHED');
-       }
-
        /**
         * Adds hub data elements to a given dataset instance
         *
index 944a081757502523cbc0c08d5dfc212ad6a207a0..010c497342512b94294c12c7d71a420bc8036f6f 100644 (file)
@@ -61,18 +61,6 @@ class HubListNode extends BaseHubNode implements NodeHelper, Registerable {
                $this->partialStub();
        }
 
-       /**
-        * Initializes hub-specific queues
-        *
-        * @return      void
-        * @todo        Unfinished method
-        */
-       public function initQueues () {
-               // Call generic queues every hub may have, like the core queue
-               parent::initGenericQueues();
-               $this->partialStub('Please add some more hub-specific queues.');
-       }
-
        /**
         * Add some node-specific filters
         *
index 4b89637348ca3e10d213a8614b3caf84c498fcbf..23124cc7e086b50cd88e717b9d139ed83cd6bb30 100644 (file)
@@ -65,18 +65,6 @@ class HubMasterNode extends BaseHubNode implements NodeHelper, Registerable {
                $this->partialStub('Please implement more boot-strapping steps!');
        }
 
-       /**
-        * Initializes hub-specific queues
-        *
-        * @return      void
-        * @todo        Unfinished method
-        */
-       public function initQueues () {
-               // Call generic queues every hub may have, like the core queue
-               parent::initGenericQueues();
-               $this->partialStub('Please add some more hub-specific queues.');
-       }
-
        /**
         * Add some node-specific filters
         *
index 692d1b6c9e5e073fec2e6a014db68bf14001ad6d..13c99aa6084c9e88fdd8673b2ffd47047d2eb961 100644 (file)
@@ -61,18 +61,6 @@ class HubRegularNode extends BaseHubNode implements NodeHelper, Registerable {
                $this->partialStub();
        }
 
-       /**
-        * Initializes hub-specific queues
-        *
-        * @return      void
-        * @todo        Unfinished method
-        */
-       public function initQueues () {
-               // Call generic queues every hub may have, like the core queue
-               parent::initGenericQueues();
-               $this->partialStub('Please add some more hub-specific queues.');
-       }
-
        /**
         * Add some node-specific filters
         *