]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/listener/udp/decorators/class_HubUdpListenerDecorator.php
Copyright notice updated
[hub.git] / application / hub / main / listener / udp / decorators / class_HubUdpListenerDecorator.php
index 387eb9c232f655c753c7daca4bccfe12df4335d2..a1778738fb6bf61d2d6d2fd90684124e9379117f 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -30,6 +30,9 @@ class HubUdpListenerDecorator extends BaseListenerDecorator implements Listenabl
        protected function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
+
+               // Set listener type
+               $this->setListenerType('hub');
        }
 
        /**
@@ -38,7 +41,7 @@ class HubUdpListenerDecorator extends BaseListenerDecorator implements Listenabl
         * @param       $listenerInstance       A Listener instance
         * @return      $decoratorInstance      An instance a prepared listener decorator class
         */
-       public final static function createHubUdpListenerDecorator (Listenable $listenerInstance) {
+       public static final function createHubUdpListenerDecorator (Listenable $listenerInstance) {
                // Get new instance
                $decoratorInstance = new HubUdpListenerDecorator();
 
@@ -53,10 +56,39 @@ class HubUdpListenerDecorator 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 UDP package first
+               $this->getListenerInstance()->doListen();
+
+               // Handle hub UDP package
+               $this->partialStub('Need to handle hub UDP 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;
        }
 }