]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/listener/tcp/decorators/class_HubTcpListenerDecorator.php
Added more UNL (Universal Node Locator) stuff:
[hub.git] / application / hub / main / listener / tcp / decorators / class_HubTcpListenerDecorator.php
index f621b30ba85951f49a042d01078b7b719f0255b3..71022812292d6a39a307afe139924ad1346c6f4a 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * A decorator for the TcpListener to communicate to hubs
  *
- * @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 - 2014 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
@@ -30,6 +30,10 @@ class HubTcpListenerDecorator extends BaseListenerDecorator implements Listenabl
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
+
+               // Set listener type and protocol name
+               $this->setListenerType('hub');
+               $this->setProtocolName('tcp');
        }
 
        /**
@@ -38,7 +42,7 @@ class HubTcpListenerDecorator extends BaseListenerDecorator implements Listenabl
         * @param       $listenerInstance       A Listener instance
         * @return      $decoratorInstance      An instance a prepared listener decorator class
         */
-       public final static function createHubTcpListenerDecorator (Listenable $listenerInstance) {
+       public static final function createHubTcpListenerDecorator (Listenable $listenerInstance) {
                // Get new instance
                $decoratorInstance = new HubTcpListenerDecorator();
 
@@ -53,10 +57,39 @@ class HubTcpListenerDecorator extends BaseListenerDecorator implements Listenabl
         * Initializes the listener by setting up the required socket server
         *
         * @return      void
-        * @todo        0% done
         */
-       public function initListener() {
-               $this->partialStub('Need to implement this method.');
+       public function initListener () {
+               $this->partialStub('WARNING: This method should not be called.');
+       }
+
+       /**
+        * "Listens" for incoming network packages
+        *
+        * @return      void
+        */
+       public function doListen () {
+               // Handle generic TCP package
+               $this->getListenerInstance()->doListen();
+
+               // Handle hub TCP package
+               $this->partialStub('Need to handle hub TCP package.');
+       }
+
+       /**
+        * Checks whether the listener would accept the given package data array
+        *
+        * @param       $packageData    Raw package data
+        * @return      $accepts                Whether this listener does accept
+        */
+       public function ifListenerAcceptsPackageData (array $packageData) {
+               // Get a tags instance
+               $tagsInstance = PackageTagsFactory::createPackageTagsInstance();
+
+               // So is the package accepted with this listener?
+               $accepts = $tagsInstance->ifPackageDataIsAcceptedByListener($packageData, $this);
+
+               // Return the result
+               return $accepts;
        }
 }