]> git.mxchange.org Git - hub.git/commitdiff
Also visit the NetworkPackage class to clear all stacks
authorRoland Häder <roland@mxchange.org>
Wed, 9 Nov 2011 01:52:00 +0000 (01:52 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 9 Nov 2011 01:52:00 +0000 (01:52 +0000)
application/hub/config.php
application/hub/interfaces/package/class_Deliverable.php
application/hub/main/database/wrapper/states/class_PeerStateLookupDatabaseWrapper.php
application/hub/main/filter/cruncher/class_CruncherInitializationFilter.php
application/hub/main/filter/node/class_NodeInitializationFilter.php
application/hub/main/helper/connection/udp/class_UdpConnectionHelper.php
application/hub/main/lists/class_BaseList.php
application/hub/main/package/class_NetworkPackage.php
application/hub/main/pools/peer/class_DefaultPeerPool.php
application/hub/main/statistics/connection/class_ConnectionStatisticsHelper.php
application/hub/main/visitor/socket/class_ShutdownSocketVisitor.php

index 79d812e482df4d8aa9c3025acd5713a22a0a8c2f..6d52631274d85e4410c37344edaf0f3f0a0374fa 100644 (file)
@@ -429,12 +429,6 @@ $cfg->setConfigEntry('query_iterator_class', 'DefaultIterator');
 // CFG: HUB-PING-ITERATOR-CLASS
 $cfg->setConfigEntry('hub_ping_iterator_class', 'HubPingIterator');
 
-// CFG: TEST-UNIT-PRODUCER-KEY-ITERATOR-CLASS
-$cfg->setConfigEntry('test_unit_producer_key_iterator_class', 'TestUnitKeyProducerIterator');
-
-// CFG: WORK-UNIT-PRODUCER-KEY-ITERATOR-CLASS
-$cfg->setConfigEntry('work_unit_producer_key_iterator_class', 'WorkUnitKeyProducerIterator');
-
 // CFG: LOCAL-QUERY-LIST-CLASS
 $cfg->setConfigEntry('local_query_list_class', 'LocalQueryList');
 
@@ -656,6 +650,12 @@ $cfg->setConfigEntry('cruncher_unit_db_wrapper_class', 'CruncherUnitDatabaseWrap
 // CFG: CRUNCHER-RANDOM-SECRET-MESSAGE-LENGTH
 $cfg->setConfigEntry('random_secret_message_length', 100);
 
+// CFG: TEST-UNIT-PRODUCER-KEY-ITERATOR-CLASS
+$cfg->setConfigEntry('test_unit_producer_key_iterator_class', 'TestUnitKeyProducerIterator');
+
+// CFG: WORK-UNIT-PRODUCER-KEY-ITERATOR-CLASS
+$cfg->setConfigEntry('work_unit_producer_key_iterator_class', 'WorkUnitKeyProducerIterator');
+
 // CFG: TEST-UNIT-RANDOM-SECRET-KEY-LENGTH
 $cfg->setConfigEntry('test_unit_random_secret_key_length', 8*4);
 
index 2c6803843fd4d3ce2463349b2d125ddab5fe5c9a..4ec7490611528d38e42171d58d229551548bbaa0 100644 (file)
@@ -80,6 +80,13 @@ interface Deliverable extends FrameworkInterface {
         * @return      void
         */
        function sendWaitingPackage ();
+
+       /**
+        * Clears all stacks
+        *
+        * @return      void
+        */
+       function clearAllStacks ();
 }
 
 // [EOF]
index 493c168deddb344efdabc9d6c266c021193fa496..1f29e6e3bc986f5a2d821a1aad7121796a5b1aed 100644 (file)
@@ -98,7 +98,7 @@ class PeerStateLookupDatabaseWrapper extends BaseDatabaseWrapper implements Look
                // Is the package valid?
                if (!isset($packageData[NetworkPackage::PACKAGE_DATA_SENDER])) {
                        // Invalid package found, please report this
-                       $this->debugBackTrace(__METHOD__ . ': packageData=' . print_r($packageData, true));
+                       $this->debugBackTrace('[' . __METHOD__ . ':' . __LINE__ . ']:  packageData=' . print_r($packageData, true));
                } // END - if
 
                // Get a search criteria instance from package data
index c72ca6cbc0af0d7cf1ee217a57c638f32e5e7348..196c83ee69daa06fe1d4413a07af11c723bb36ce 100644 (file)
@@ -85,7 +85,7 @@ class CruncherInitializationFilter extends BaseFilter implements Filterable {
                } catch (ClassNotFoundException $e) {
                        // This exception means, the cruncher mode is invalid.
                        // @TODO Can we rewrite this to app_die() ?
-                       $this->debugBackTrace(__METHOD__ . ': cruncher mode ' . $cruncherMode . ' is invalid.');
+                       $this->debugBackTrace('[' . __METHOD__ . ':' . __LINE__ . ']:  cruncher mode ' . $cruncherMode . ' is invalid.');
                }
 
                // Set the cruncher instance in registry
index dbcf42d5e166726001d81360d6ce66eebf0fd2a2..27a4cfcccbc943ce7c0f9dcec21f03e9763cdee4 100644 (file)
@@ -85,7 +85,7 @@ class NodeInitializationFilter extends BaseFilter implements Filterable {
                } catch (ClassNotFoundException $e) {
                        // This exception means, the node mode is invalid.
                        // @TODO Can we rewrite this to app_die() ?
-                       $this->debugBackTrace(__METHOD__ . ': node mode ' . $nodeMode . ' is invalid.');
+                       $this->debugBackTrace('[' . __METHOD__ . ':' . __LINE__ . ']:  node mode ' . $nodeMode . ' is invalid.');
                }
 
                // Set the node instance in registry
index 10ee2ad90eb779a49d08f5bc5c71c6de1d138339..1343c5588780536cf66660e0f8ac29b56c079e63 100644 (file)
@@ -43,7 +43,7 @@ class UdpConnectionHelper extends BaseConnectionHelper implements ConnectionHelp
         * @return      $socketResource         Socket resource
         */
        public static function createConnectionFromPackageData (array $packageData) {
-               $this->debugBackTrace(__METHOD__ . ': Unfinished method, packageData[]=' . count($packageData));
+               $this->debugBackTrace('[' . __METHOD__ . ':' . __LINE__ . ']:  Unfinished method, packageData[]=' . count($packageData));
        }
 
        /**
index cbc3f62edc9a9eb81c5209fe45b132c60aefbf7b..af4cd69d3d4fc9bd9a2c6abd0ad9db7a15ec376a 100644 (file)
@@ -190,7 +190,7 @@ class BaseList extends BaseHubSystem implements IteratorAggregate, Countable {
 
                // Generate hash
                $hash = $this->generateHash($groupName, $groupName, $entry);
-               //* DEBUG: */ $this->debugOutput(__METHOD__ . ': groupName=' . $groupName . ', entry=' . $entry . ', hash=' . $hash);
+               //* DEBUG: */ $this->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']:  groupName=' . $groupName . ', entry=' . $entry . ', hash=' . $hash);
 
                // Add the hash to the index
                $this->listIndex[] = $hash;
@@ -220,7 +220,7 @@ class BaseList extends BaseHubSystem implements IteratorAggregate, Countable {
 
                // Generate hash
                $hash = $this->generateHash($groupName, $groupName, $entry);
-               //* DEBUG: */ $this->debugOutput(__METHOD__ . ': groupName=' . $groupName . ', entry=' . $entry . ', hash=' . $hash);
+               //* DEBUG: */ $this->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']:  groupName=' . $groupName . ', entry=' . $entry . ', hash=' . $hash);
 
                // Remove it from the list ...
                unset($this->listEntries[$hash]);
@@ -259,7 +259,7 @@ class BaseList extends BaseHubSystem implements IteratorAggregate, Countable {
                        $entry2 = crc32($entry['id']) . ':' . count($entry);
                } else {
                        // Unsupported type detected
-                       $this->debugOutut(__METHOD__ . ': entry type ' . gettype($entry) . ' is unsupported.');
+                       $this->debugOutut('[' . __METHOD__ . ':' . __LINE__ . ']:  entry type ' . gettype($entry) . ' is unsupported.');
 
                        // @TODO Extend this somehow?
                        $entry2 = gettype($entry);
index 49bdaf0db1ee292c06afe06a865a550705a05ea7..e40c73951baefd0cd054708f79fe3477c05c6f20 100644 (file)
@@ -35,7 +35,7 @@
  * 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 NetworkPackage extends BaseFrameworkSystem implements Deliverable, Receivable, Registerable {
+class NetworkPackage extends BaseFrameworkSystem implements Deliverable, Receivable, Registerable, Visitable {
        /**
         * Package mask for compressing package data:
         * 0: Compressor extension
@@ -195,18 +195,18 @@ class NetworkPackage extends BaseFrameworkSystem implements Deliverable, Receiva
                                self::STACKER_NAME_DECODED_HANDLED,
                                self::STACKER_NAME_BACK_BUFFER
                        ) as $stackerName) {
-                       // Init this stacker
-                       $this->getStackerInstance()->initStacker($stackerName);
+                               // Init this stacker
+                               $this->getStackerInstance()->initStacker($stackerName);
                } // END - foreach
        }
 
        /**
         * "Getter" for hash from given content and helper instance
         *
-        * @param       $content        Raw package content
+        * @param       $content                        Raw package content
         * @param       $helperInstance         An instance of a HelpableHub class
         * @param       $nodeInstance           An instance of a NodeHelper class
-        * @return      $hash   Hash for given package content
+        * @return      $hash                           Hash for given package content
         * @todo        $helperInstance is unused
         */
        private function getHashFromContent ($content, HelpableHub $helperInstance, NodeHelper $nodeInstance) {
@@ -648,6 +648,47 @@ class NetworkPackage extends BaseFrameworkSystem implements Deliverable, Receiva
        public function isNewPackageArrived () {
                // @TODO Add some content here
        }
+
+       /**
+        * Accepts the visitor to process the visit "request"
+        *
+        * @param       $visitorInstance        An instance of a Visitor class
+        * @return      void
+        */
+       public function accept (Visitor $visitorInstance) {
+               // Debug message
+               //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: ' . $visitorInstance->__toString() . ' has visited - START');
+
+               // Visit the package
+               $visitorInstance->visitNetworkPackage($this);
+
+               // Debug message
+               //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: ' . $visitorInstance->__toString() . ' has visited - FINISHED');
+       }
+
+       /**
+        * Clears all stacks
+        *
+        * @return      void
+        */
+       public function clearAllStacks () {
+               // Do the cleanup (no flushing)
+               foreach (
+                       array(
+                               self::STACKER_NAME_UNDECLARED,
+                               self::STACKER_NAME_DECLARED,
+                               self::STACKER_NAME_OUTGOING,
+                               self::STACKER_NAME_DECODED_INCOMING,
+                               self::STACKER_NAME_DECODED_HANDLED,
+                               self::STACKER_NAME_BACK_BUFFER
+                       ) as $stackerName) {
+                               // Clear this stacker by forcing an init
+                               $this->getStackerInstance()->initStacker($stackerName, true);
+               } // END - foreach
+
+               // Debug message
+               /* DEBUG: */ $this->debugOutput('PACKAGE: All stackers has be re-initialized.');
+       }
 }
 
 // [EOF]
index 3158547f2df049efeec0a38322e3170f747e9ebe..86f0607732e86ca05590a16cbd6f28f18d13dfd9 100644 (file)
@@ -147,7 +147,7 @@ class DefaultPeerPool extends BasePool implements PoolablePeer {
                        } // END - if
 
                        // @TODO Check for IP
-                       $this->debugBackTrace(__METHOD__ . ':'.print_r($packageData, true));
+                       $this->debugBackTrace('[' . __METHOD__ . ':' . __LINE__ . ']: '.print_r($packageData, true));
                } // END - foreach
 
                // Return the determined socket resource
index 42fd5c1da2d8ea2aa684692bc9d81533b51590b8..f125081eda00b6df41a48d6ee0d7f949bddcb892 100644 (file)
@@ -56,7 +56,7 @@ class ConnectionStatisticsHelper extends BaseHubSystem {
         * @return      $isExhausted            Wether the retry count has been reached
         */
        public static function isConnectRetryExhausted (ConnectionHelper $helperInstance) {
-               //* DEBUG: */ $helperInstance->debugOutput(__METHOD__ . ':helperInstance=' . $helperInstance->__toString() . ' - ENTERED!');
+               //* DEBUG: */ $helperInstance->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: helperInstance=' . $helperInstance->__toString() . ' - ENTERED!');
                // Construct config entry
                $configEntry = $helperInstance->getProtocol() . '_connect_retry_max';
 
@@ -70,7 +70,7 @@ class ConnectionStatisticsHelper extends BaseHubSystem {
                );
 
                // Return it
-               //* DEBUG: */ $helperInstance->debugOutput(__METHOD__ . ':helperInstance=' . $helperInstance->__toString() . ',isExhausted=' . intval($isExhausted) . ' - EXIT!');
+               //* DEBUG: */ $helperInstance->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: helperInstance=' . $helperInstance->__toString() . ',isExhausted=' . intval($isExhausted) . ' - EXIT!');
                return $isExhausted;
        }
 
@@ -81,15 +81,15 @@ class ConnectionStatisticsHelper extends BaseHubSystem {
         * @return      void
         */
        public static function increaseConnectRetry (ConnectionHelper $helperInstance) {
-               //* DEBUG: */ $helperInstance->debugOutput(__METHOD__ . ':helperInstance=' . $helperInstance->__toString() . ' - ENTERED!');
+               //* DEBUG: */ $helperInstance->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: helperInstance=' . $helperInstance->__toString() . ' - ENTERED!');
                // Is the counter there
                if (!isset(self::$connectionStatistics[$helperInstance->getProtocol()][$helperInstance->__toString()]['retry_count'])) {
                        // First attempt
-                       //* DEBUG: */ $helperInstance->debugOutput(__METHOD__ . ':helperInstance=' . $helperInstance->__toString() . ' - FIRST!');
+                       //* DEBUG: */ $helperInstance->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: helperInstance=' . $helperInstance->__toString() . ' - FIRST!');
                        self::$connectionStatistics[$helperInstance->getProtocol()][$helperInstance->__toString()]['retry_count'] = 1;
                } else {
                        // Next attempt
-                       //* DEBUG: */ $helperInstance->debugOutput(__METHOD__ . ':helperInstance=' . $helperInstance->__toString() . ' - INCREMENT!');
+                       //* DEBUG: */ $helperInstance->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: helperInstance=' . $helperInstance->__toString() . ' - INCREMENT!');
                        self::$connectionStatistics[$helperInstance->getProtocol()][$helperInstance->__toString()]['retry_count']++;
                }
 
index b584b7ed895ffe80f88edd3e6c2dadee413b87b6..60eb3abba11a87c91d5e8d3d8e9b8f3eac162e4c 100644 (file)
@@ -58,6 +58,9 @@ class ShutdownSocketVisitor extends BaseVisitor implements Visitor {
        public function visitConnectionHelper (ConnectionHelper $helperInstance) {
                // Do we have reached the retry count?
                if (ConnectionStatisticsHelper::isConnectRetryExhausted($helperInstance)) {
+                       // Also visit the network package to clear any out-going packages
+                       NetworkPackageFactory::createNetworkPackageInstance()->accept($this);
+
                        // Shutdown the connection
                        $helperInstance->doShutdown();
                } else {
@@ -65,6 +68,18 @@ class ShutdownSocketVisitor extends BaseVisitor implements Visitor {
                        ConnectionStatisticsHelper::increaseConnectRetry($helperInstance);
                }
        }
+
+       /**
+        * "Visit" method to do the actual request. Here we want to "partly shutdown"
+        * the network package instance to clear all stacks.
+        *
+        * @param       $packageInstance        An instance of a Deliverable class
+        * @return      void
+        */
+       public function visitNetworkPackage (Deliverable $packageInstance) {
+               // Just call it back
+               $packageInstance->clearAllStacks();
+       }
 }
 
 // [EOF]