]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/visitor/socket/class_ShutdownSocketVisitor.php
Updated 'core'.
[hub.git] / application / hub / main / visitor / socket / class_ShutdownSocketVisitor.php
index 04dd996947b03f4471bf370981c3dae4b4bc4c37..7196f83567fb8cef850fe55ab7ab10d949f70914 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A ShutdownSocket visitor
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @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
@@ -32,7 +32,7 @@ class ShutdownSocketVisitor extends BaseVisitor implements Visitor {
                parent::__construct(__CLASS__);
 
                // Set visitor mode
-               $this->setVisitorMode('ShutdownSocket');
+               $this->setVisitorMode('socket');
        }
 
        /**
@@ -52,19 +52,45 @@ class ShutdownSocketVisitor extends BaseVisitor implements Visitor {
         * "Visit" method to do the actual request. Here we want to shutdown the
         * attached socket.
         *
-        * @param       $helperInstance         A BaseConnectionHelper instance
+        * @param       $helperInstance         An instance of a ConnectionHelper class
         * @return      void
         */
-       public function visitConnectionHelper (BaseConnectionHelper $helperInstance) {
+       public function visitConnectionHelper (ConnectionHelper $helperInstance) {
                // Do we have reached the retry count?
-               if ($helperInstance->isConnectRetryExhausted()) {
+               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 {
                        // We can still move on and retry the connection attempt
-                       $helperInstance->increaseConnectRetry();
+                       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();
+       }
+
+       /**
+        * "Visit" the assembler instance. This shall clear any pending data
+        *
+        * @param       $assemblerInstance      An instance of a Assembler class
+        * @return      void
+        */
+       public function visitAssembler (Assembler $assemblerInstance) {
+               // Clear pending data
+               $assemblerInstance->clearPendingData();
+       }
 }
 
 // [EOF]