]> git.mxchange.org Git - hub.git/blob - application/hub/main/pools/peer/class_DefaultPeerPool.php
More debugging lines enabled (need to hunt down those bugs already :( ), added check...
[hub.git] / application / hub / main / pools / peer / class_DefaultPeerPool.php
1 <?php
2 /**
3  * A default peer pool class
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class DefaultPeerPool extends BasePool implements PoolablePeer {
25         /**
26          * Protected constructor
27          *
28          * @return      void
29          */
30         protected function __construct () {
31                 // Call parent constructor
32                 parent::__construct(__CLASS__);
33         }
34
35         /**
36          * Creates an instance of this class
37          *
38          * @param       $listenerInstance       A Listenable instance
39          * @return      $poolInstance           An instance a Poolable class
40          */
41         public static final function createDefaultPeerPool (Listenable $listenerInstance) {
42                 // Get new instance
43                 $poolInstance = new DefaultPeerPool();
44
45                 // Set the application instance
46                 $poolInstance->setListenerInstance($listenerInstance);
47
48                 // Return the prepared instance
49                 return $poolInstance;
50         }
51
52         /**
53          * Validates given socket
54          *
55          * @param       $socketResource         A valid socket resource
56          * @return      void
57          * @throws      InvalidSocketException  If the given socket has an error
58          */
59         private function validateSocket ($socketResource) {
60                 // Is it a valid resource?
61                 if (!is_resource($socketResource)) {
62                         // Throw an exception
63                         throw new InvalidSocketException(array($this, $socketResource), BaseListener::EXCEPTION_INVALID_SOCKET);
64                 } // END - if
65
66                 // Get error code
67                 $errorCode = socket_last_error($socketResource);
68
69                 // Is it without any errors?
70                 if ($errorCode > 0) {
71                         // Handle the socket error with a faked recipientData array
72                         $this->handleSocketError(__METHOD__, __LINE__, $socketResource, array('0.0.0.0', '0'));
73                         /*
74                         // Get error message
75                         $errorMessage = socket_strerror($errorCode);
76
77                         // Shutdown this socket
78                         $this->getListenerInstance()->shutdownSocket($socketResource);
79
80                         // And throw again
81                         throw new InvalidSocketException(array($this, $socketResource, $errorCode, $errorMessage), BaseListener::EXCEPTION_INVALID_SOCKET);
82                         */
83                 } // END - if
84         }
85
86         /**
87          * Adds a socket resource to the peer pool
88          *
89          * @param       $socketResource         A valid (must be!) socket resource
90          * @return      void
91          * @throws      InvalidSocketException  If the given resource is invalid or errorous
92          */
93         public function addPeer ($socketResource) {
94                 // Validate the socket
95                 $this->validateSocket($socketResource);
96
97                 // Default is this peer's IP
98                 $peerName = '0.0.0.0';
99
100                 // The socket resource should not match server socket
101                 if ($socketResource != $this->getListenerInstance()->getSocketResource()) {
102                         // Try to determine the peer's IP number
103                         if (!socket_getpeername($socketResource, $peerName)) {
104                                 // Handle the socket error with a faked recipientData array
105                                 $this->handleSocketError(__METHOD__, __LINE__, $socketResource, array('0.0.0.0', '0'));
106                                 /*
107                                 // Get last error
108                                 $lastError = socket_last_error($socketResource);
109
110                                 // Doesn't work!
111                                 throw new InvalidSocketException(array($this, $socketResource, $lastError, socket_strerror($lastError)), BaseListener::EXCEPTION_INVALID_SOCKET);
112                                 */
113                         } // END - if
114                 } else {
115                         // Server sockets won't work with socket_getpeername()
116                         $this->debugOutput('POOL: Socket resource is server socket (' . $socketResource . '). This is not a bug.');
117                 }
118
119                 // Output error message
120                 $this->debugOutput('POOL: Adding peer ' . $peerName . ',socketResource=' . $socketResource);
121
122                 // Add it finally to the pool
123                 $this->addPoolEntry($socketResource);
124         }
125
126         /**
127          * Getter for array of all socket resources
128          *
129          * @return      $sockets        An array with all sockets
130          */
131         public final function getAllSockets () {
132                 // Get the list
133                 $sockets = $this->getArrayFromList('pool');
134
135                 // Return it
136                 return $sockets;
137         }
138
139         /**
140          * "Getter" for a valid socket resource from given packae data.
141          *
142          * @param       $packageData            Raw package data
143          * @return      $socketResource         Socket resource
144          */
145         public function getSocketFromPackageData (array $packageData) {
146                 // Default is no socket
147                 $socketResource = false;
148
149                 // Temporary resolve recipient field
150                 $recipientIpArray = explode(':', HubTools::resolveSessionId($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT], $packageData[NetworkPackage::PACKAGE_DATA_PROTOCOL]));
151
152                 // Make sure it is a valid ip:port array (2 elements)
153                 assert(count($recipientIpArray) == 2);
154
155                 // Debug message
156                 /* NOISY-DEBUG: */ $this->debugOutput('POOL: Checking ' . count($this->getAllSockets()) . ' socket(s), recipientIpArray[0]=' . $recipientIpArray[0] . ' ...');
157
158                 // Get all sockets and check them, skip the server socket
159                 foreach ($this->getAllSockets() as $socket) {
160                         // Is this a server socket?
161                         if ($socket === $this->getListenerInstance()->getSocketResource()) {
162                                 // Skip 'server' sockets (local socket)
163                                 /* NOISY-DEBUG: */ $this->debugOutput('POOL: Skipping local socket ' . $socket . ' ...');
164                                 continue;
165                         } // END - if
166
167                         // Try to get the "peer"'s name
168                         if (!socket_getpeername($socket, $peerIp)) {
169                                 // Handle the socket error with given package data
170                                 $this->handleSocketError(__METHOD__, __LINE__, $socket, explode(':', $packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT]));
171                         } // END - if
172
173                         // If the "peer" IP and recipient is same, use it
174                         if ($peerIp == $recipientIpArray[0]) {
175                                 // IPs match, so take the socket and quit this loop
176                                 $socketResource = $socket;
177
178                                 // Debug message
179                                 /* NOISY-DEBUG: */ $this->debugOutput('POOL: peerIp=' . $peerIp . ' matches with recipient IP address. Taking socket=' . $socket);
180                                 break;
181                         } // END - if
182                 } // END - foreach
183
184                 // Return the determined socket resource
185                 /* NOISY-DEBUG: */ $this->debugOutput('POOL: socketResource[' . gettype($socketResource) . ']=' . $socketResource);
186                 return $socketResource;
187         }
188 }
189
190 // [EOF]
191 ?>