]> git.mxchange.org Git - hub.git/commitdiff
Method initQueues() added, class name HubBootNode fixed
authorRoland Häder <roland@mxchange.org>
Sun, 5 Jul 2009 21:55:16 +0000 (21:55 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 5 Jul 2009 21:55:16 +0000 (21:55 +0000)
.gitattributes
application/hub/class_ApplicationHelper.php
application/hub/interfaces/nodes/class_NodeHelper.php
application/hub/main/nodes/boot/class_HubBootNode.php
application/hub/main/nodes/class_BaseHubNode.php
application/hub/main/nodes/list/class_BootListNode.php [deleted file]
application/hub/main/nodes/list/class_HubBootNode.php [new file with mode: 0644]
application/hub/main/nodes/master/class_HubMasterNode.php
application/hub/main/nodes/regular/class_HubRegularNode.php

index 468e6ab4171c428fbeac87095deb2901f68f2f99..91057f5bbde67033573a78e823e445b8dc95a5f0 100644 (file)
@@ -34,7 +34,7 @@ application/hub/main/nodes/boot/class_HubBootNode.php -text
 application/hub/main/nodes/class_ -text
 application/hub/main/nodes/class_BaseHubNode.php -text
 application/hub/main/nodes/list/.htaccess -text
-application/hub/main/nodes/list/class_BootListNode.php -text
+application/hub/main/nodes/list/class_HubBootNode.php -text
 application/hub/main/nodes/master/.htaccess -text
 application/hub/main/nodes/master/class_HubMasterNode.php -text
 application/hub/main/nodes/regular/.htaccess -text
index 055d9c988ebcfa14e2924ca57716e6eeb64c0468..23ad957ac70a5c1a3053a1a42f9f2e9df6a35037 100644 (file)
@@ -192,10 +192,9 @@ class ApplicationHelper extends BaseFrameworkSystem implements ManageableApplica
                $nodeInstance->doBootstrapping();
 
                // ----------------------- Init all query queues ----------------------
-               // After the bootstrap is done we need to initialize the query queues
-               // which will help us to communicate between the "tasks" a hub needs to
-               // do.
-               $nodeInstance->initQueryQueues();
+               // After the bootstrap is done we need to initialize the queues which
+               // will help us to communicate between the "tasks" a hub needs to do.
+               $nodeInstance->initQueues();
 
                // ----------------------------- Main loop ----------------------------
                // This is the main loop. Queried calls should come back here very fast
index fb7513c2b8d18c8dd8ec61c40765d58a93af56fb..ac4705d17ab08a4975c8250cbaff071f0b16c471 100644 (file)
@@ -31,6 +31,13 @@ interface NodeHelper extends FrameworkInterface {
         * @return      void
         */
        function doBootstrapping ();
+
+       /**
+        * Initializes hub-specific queues
+        *
+        * @return      void
+        */
+       function initQueues ();
 }
 
 //
index 32bb6366dd578839ef4a7f5a442239407235c038..93befa3422e8dd2873ecba0c79e6bc95c0253a48 100644 (file)
@@ -95,7 +95,19 @@ class HubBootNode extends BaseHubNode implements NodeHelper {
                // This should be the last thing to do: output teaser lines
                $this->outputConsoleTeaser();
        }
+
+       /**
+        * 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.');
+       }
 }
 
-// [EOF]
+//
 ?>
index 319ae987a6be10b0506c2409e7eeb1cc7df9b46e..b6ff400aaee01030ed47874c2a9a80a6fefcd750 100644 (file)
@@ -200,6 +200,15 @@ class BaseHubNode extends BaseFrameworkSystem implements Updateable {
                }
        }
 
+       /**
+        * Initializes queues which every node needs
+        *
+        * @return      void
+        */
+       protected function initGenericQueues () {
+               $this->partialStub('Init query queue here.');
+       }
+       
        /**
         * Adds hub data elements to a given dataset instance
         *
diff --git a/application/hub/main/nodes/list/class_BootListNode.php b/application/hub/main/nodes/list/class_BootListNode.php
deleted file mode 100644 (file)
index 2b5257f..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-<?php
-/**
- * A hub-node class for the 'List' mode
- *
- * @author             Roland Haeder <webmaster@ship-simu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 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 HubListNode extends BaseHubNode implements NodeHelper {
-       /**
-        * Protected constructor
-        *
-        * @return      void
-        */
-       protected function __construct () {
-               // Call parent constructor
-               parent::__construct(__CLASS__);
-       }
-
-       /**
-        * Creates an instance of this hub-node class
-        *
-        * @param       $requestInstance        An instance of a Requestable class
-        * @return      $nodeInstance           An instance of this hub-node class
-        */
-       public final static function createHubListNode (Requestable $requestInstance) {
-               // Get a new instance
-               $nodeInstance = new HubListNode();
-
-               // Set the request instance
-               $nodeInstance->setRequestInstance($requestInstance);
-
-               // --------------------- Hub-id acquirement phase ---------------------
-               // Acquire a hub-id. This step generates on first launch a new one and
-               // on any later launches it will restore the hub-id from the database.
-               // A passed 'nickname=xxx' argument will be used to add some
-               // 'personality' to the hub.
-               $nodeInstance->acquireHubId();
-
-               // Return the instance
-               return $nodeInstance;
-       }
-
-       /**
-        * Method to "bootstrap" the node. This step does also apply provided
-        * command-line arguments stored in the request instance. The regular node
-        * should communicate with the bootstrap-nodes at this point.
-        *
-        * @return      void
-        * @todo        Implement this method
-        */
-       public function doBootstrapping () {
-               // Call generic (parent) bootstrapping method first
-               parent::doGenericBootstrapping();
-               $this->partialStub('Please implement this method.');
-
-               // This should be the last line: output teaser
-               $this->outputConsoleTeaser();
-       }
-}
-
-// [EOF]
-?>
diff --git a/application/hub/main/nodes/list/class_HubBootNode.php b/application/hub/main/nodes/list/class_HubBootNode.php
new file mode 100644 (file)
index 0000000..c490782
--- /dev/null
@@ -0,0 +1,90 @@
+<?php
+/**
+ * A hub-node class for the 'List' mode
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 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 HubListNode extends BaseHubNode implements NodeHelper {
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+       }
+
+       /**
+        * Creates an instance of this hub-node class
+        *
+        * @param       $requestInstance        An instance of a Requestable class
+        * @return      $nodeInstance           An instance of this hub-node class
+        */
+       public final static function createHubListNode (Requestable $requestInstance) {
+               // Get a new instance
+               $nodeInstance = new HubListNode();
+
+               // Set the request instance
+               $nodeInstance->setRequestInstance($requestInstance);
+
+               // --------------------- Hub-id acquirement phase ---------------------
+               // Acquire a hub-id. This step generates on first launch a new one and
+               // on any later launches it will restore the hub-id from the database.
+               // A passed 'nickname=xxx' argument will be used to add some
+               // 'personality' to the hub.
+               $nodeInstance->acquireHubId();
+
+               // Return the instance
+               return $nodeInstance;
+       }
+
+       /**
+        * Method to "bootstrap" the node. This step does also apply provided
+        * command-line arguments stored in the request instance. The regular node
+        * should communicate with the bootstrap-nodes at this point.
+        *
+        * @return      void
+        * @todo        Implement this method
+        */
+       public function doBootstrapping () {
+               // Call generic (parent) bootstrapping method first
+               parent::doGenericBootstrapping();
+               $this->partialStub('Please implement this method.');
+
+               // This should be the last line: output teaser
+               $this->outputConsoleTeaser();
+       }
+
+       /**
+        * 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.');
+       }
+}
+
+//
+?>
index 5de2a59ddcd889fbede98d03a7339bcfffede0a8..98328175693d7a05b9d6520254d7efbba9b3d8a2 100644 (file)
@@ -72,7 +72,19 @@ class HubMasterNode extends BaseHubNode implements NodeHelper {
                // This should be the last line: output teaser
                $this->outputConsoleTeaser();
        }
+
+       /**
+        * 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.');
+       }
 }
 
-// [EOF]
+//
 ?>
index e1c144537db643d85a17e8ac303a0ba70154007f..20ae415d42d4f224da882419be0383013080410f 100644 (file)
@@ -73,7 +73,19 @@ class HubRegularNode extends BaseHubNode implements NodeHelper {
                // This is the last line: output teaser
                $this->outputConsoleTeaser();
        }
+
+       /**
+        * 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.');
+       }
 }
 
-// [EOF]
+//
 ?>