]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/pools/listener/class_DefaultListenerPool.php
Updated 'core'.
[hub.git] / application / hub / main / pools / listener / class_DefaultListenerPool.php
index 621c80c21fbfc1d93b5d5816b5bf855d0cf6c97c..82e5ced4aae91914667ed67ee22168dbd38fd3d0 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A default listener pool
  *
- * @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 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
@@ -38,7 +38,7 @@ class DefaultListenerPool extends BasePool implements PoolableListener {
         * @param       $nodeInstance           A NodeHelper instance
         * @return      $listenerInstance       An instance a prepared listener class
         */
-       public final static function createDefaultListenerPool (NodeHelper $nodeInstance) {
+       public static final function createDefaultListenerPool (NodeHelper $nodeInstance) {
                // Get new instance
                $listenerInstance = new DefaultListenerPool();
 
@@ -57,31 +57,16 @@ class DefaultListenerPool extends BasePool implements PoolableListener {
         */
        public function addListener (Listenable $listenerInstance) {
                // Add this listener instance to the instance list
-               parent::addInstance($listenerInstance->getProtocol(), 'listener', $listenerInstance);
+               parent::addInstance($listenerInstance->getProtocolName(), 'listener', $listenerInstance);
 
                // Debug message
-               $this->debugOutput(
-                       'POOL: Listener ' . $listenerInstance->__toString() .
+               self::createDebugInstance(__CLASS__)->debugOutput(
+                       'POOL[' . __METHOD__ . ':' . __LINE__ . ']: Listener ' . $listenerInstance->__toString() .
                        ' listening to ' . $listenerInstance->getListenAddress() . ':' .
                        $listenerInstance->getListenPort() . ' added to listener pool.'
                );
        }
 
-       /**
-        * Handle the listeners by asking them for received network packages.
-        * You should not add any debug lines here because they will be executed
-        * in the main loop and may be a performance impact.
-        *
-        * @return      void
-        */
-       public function handleListenerPool () {
-               // Get a visitor instance
-               $visitorInstance = ObjectFactory::createObjectByConfiguredName('handler_listener_pool_visitor_class');
-
-               // Start the visit
-               $this->accept($visitorInstance);
-       }
-
        /**
         * Run the shutdown seqeuence by a Visitor Pattern
         *
@@ -89,7 +74,7 @@ class DefaultListenerPool extends BasePool implements PoolableListener {
         */
        public function doShutdown () {
                // Debug message
-               $this->debugOutput('POOL: Shutting down listener pool - START');
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('POOL[' . __METHOD__ . ':' . __LINE__ . ']: Shutting down listener pool - CALLED!');
 
                // Get a new visitor
                $visitorInstance = ObjectFactory::createObjectByConfiguredName('shutdown_listener_pool_visitor_class');
@@ -98,7 +83,7 @@ class DefaultListenerPool extends BasePool implements PoolableListener {
                $this->accept($visitorInstance);
 
                // Debug message
-               $this->debugOutput('POOL: Shutting down listener pool - FINISHED');
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('POOL[' . __METHOD__ . ':' . __LINE__ . ']: Shutting down listener pool - EXIT!');
        }
 }