]> git.mxchange.org Git - hub.git/commitdiff
Added verfication of connection type in addPeer(), added more debug
authorRoland Häder <roland@mxchange.org>
Sat, 19 May 2012 16:56:47 +0000 (16:56 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 19 May 2012 16:56:47 +0000 (16:56 +0000)
application/hub/interfaces/pool/peer/class_PoolablePeer.php
application/hub/main/listener/tcp/class_TcpListener.php
application/hub/main/lists/class_BaseList.php
application/hub/main/pools/class_BasePool.php
application/hub/main/pools/peer/class_DefaultPeerPool.php

index 769a13edc30dce8a6ff83b17966c440a930b8ebf..ad81095c2fde718669b4955c09358714e39acfd8 100644 (file)
@@ -29,6 +29,7 @@ interface PoolablePeer extends Poolable, SocketTag {
         * @param       $connectionType         Type of connection, can only be 'incoming', 'outgoing' or 'server'
         * @return      void
         * @throws      InvalidSocketException  If the given resource is invalid or errorous
+        * @throws      InvalidConnectionTypeException  If the provided connection type is not valid
         */
        function addPeer ($socketResource, $connectionType);
 
index 00f78b185df32b4223734a4d9ad8bda2812e7bc8..25604efa50db1534a8c8246060e21e5428338485 100644 (file)
@@ -216,10 +216,16 @@ class TcpListener extends BaseListener implements Listenable {
 
                // Some new peers found?
                if ($left < 1) {
+                       // Debug message
+                       //* EXTREME-NOISY-DEBUG: */ $this->debugOutput('TCP-LISTENER: left=' . $left . ',server=' . $this->getSocketResource() . ',readers=' . print_r($readers, true));
+
                        // Nothing new found
                        return;
                } // END - if
 
+               // Debug message
+               /* NOISY-DEBUG: */ $this->debugOutput('TCP-LISTENER:server=' . $this->getSocketResource() . ',readers=' . print_r($readers, true));
+
                // Do we have changed peers?
                if (in_array($this->getSocketResource(), $readers)) {
                        /*
@@ -232,7 +238,7 @@ class TcpListener extends BaseListener implements Listenable {
                        $newSocket = socket_accept($this->getSocketResource());
 
                        // Debug message
-                       //* NOISY-DEBUG: */ $this->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: newSocket=' . $newSocket . ',server=' .$this->getSocketResource());
+                       /* NOISY-DEBUG: */ $this->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: newSocket=' . $newSocket . ',server=' .$this->getSocketResource());
 
                        // Array for timeout settings
                        $options  = array(
index cdf4514c1157d3752d78a79f1e78d76c9fb2cdd1..7fe351e4508144a1c862680708f47d0b9d1e833a 100644 (file)
@@ -266,9 +266,15 @@ class BaseList extends BaseHubSystem implements IteratorAggregate, Countable {
                } elseif ((is_array($entry)) && (isset($entry['id']))) {
                        // Supported array found
                        $entry2 = crc32($entry['id']) . ':' . count($entry);
+               } elseif ((is_array($entry)) && (isset($entry[BasePool::SOCKET_ARRAY_RESOURCE])) && (isset($entry[BasePool::SOCKET_ARRAY_CONN_TYPE]))) {
+                       // Is a socket resource array
+                       $entry2 = crc32($entry[BasePool::SOCKET_ARRAY_RESOURCE] . ':' . $entry[BasePool::SOCKET_ARRAY_CONN_TYPE]);
+               } elseif (is_array($entry)) {
+                       // Is a generic array
+                       $entry2 = gettype($entry) . ':' . count($entry);
                } else {
                        // Unsupported type detected
-                       $this->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']:  entry type ' . gettype($entry) . ' is unsupported.');
+                       $this->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']: Entry type ' . gettype($entry) . ' is unsupported.');
 
                        // @TODO Extend this somehow?
                        $entry2 = gettype($entry);
index ca2243d4913ccae0c7a24de9f307cdfd3af455ec..708c4e5afca1fbf243877ba4a7f3c7fad67e68fc 100644 (file)
@@ -73,7 +73,7 @@ class BasePool extends BaseHubSystem implements Visitable {
         *
         * @param       $group                  Name of the pool group
         * @param       $poolSegment    Name of the pool segment
-        * @param       $instance               An instance of a class we should add to the pool
+        * @param       $instance               An instance of a class that should bed added to the pool
         * @return      void
         */
        protected final function addInstance ($group, $poolName, Visitable $instance) {
@@ -90,7 +90,7 @@ class BasePool extends BaseHubSystem implements Visitable {
        /**
         * Adds an entry to the pool
         *
-        * @param       $poolEntry      The new pool entry we should add
+        * @param       $poolEntry      The new pool entry that should be added
         * @return      void
         */
        protected final function addPoolEntry ($poolEntry) {
index b0d7621612f7e869b6e09a18740c58b35fffc0ec..42fc143a63e52b05020af660575aa5b9d0f7b33a 100644 (file)
@@ -90,11 +90,21 @@ class DefaultPeerPool extends BasePool implements PoolablePeer {
         * @param       $connectionType         Type of connection, can only be 'incoming', 'outgoing' or 'server'
         * @return      void
         * @throws      InvalidSocketException  If the given resource is invalid or errorous
+        * @throws      InvalidConnectionTypeException  If the provided connection type is not valid
         */
        public function addPeer ($socketResource, $connectionType) {
+               // Debug message
+               //* NOISY-DEBUG: */ $this->debugOutput(__METHOD__ . ': socketResource[' . gettype($socketResource) . ']=' . $socketResource . ',connectionType=' . $connectionType . ' - ENTERED!');
+
                // Validate the socket
                $this->validateSocket($socketResource);
 
+               // Is the connection type valid?
+               if (!$this->isValidConnectionType($connectionType)) {
+                       // Is not a valid connection type!
+                       throw new InvalidConnectionTypeException(array($this, $connectionType), self::EXCEPTION_INVALID_CONNECTION_TYPE);
+               } // END - if
+
                // Default is this peer's IP
                $peerName = '0.0.0.0';
 
@@ -118,7 +128,7 @@ class DefaultPeerPool extends BasePool implements PoolablePeer {
                }
 
                // Debug message
-               $this->debugOutput('POOL: Adding peer ' . $peerName . ',socketResource=' . $socketResource);
+               $this->debugOutput('POOL: Adding peer ' . $peerName . ',socketResource=' . $socketResource . ',type=' . $connectionType);
 
                // Construct the array
                $socketArray = array(