]> git.mxchange.org Git - hub.git/blob - application/hub/main/pools/peer/class_DefaultPeerPool.php
42ca9668e7c105a6250f14137cd7191a1d1ad850
[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 - 2011 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, gettype($socketResource), 0, 'invalid'), 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                         // Get error message
72                         $errorMessage = socket_strerror($errorCode);
73
74                         // Shutdown this socket
75                         $this->getListenerInstance()->shutdownSocket($socketResource);
76
77                         // And throw again
78                         throw new InvalidSocketException(array($this, gettype($socketResource), $errorCode, $errorMessage), BaseListener::EXCEPTION_INVALID_SOCKET);
79                 } // END - if
80         }
81
82         /**
83          * Adds a socket resource to the peer pool
84          *
85          * @param       $socketResource         A valid (must be!) socket resource
86          * @return      void
87          * @throws      InvalidSocketException  If the given resource is invalid or errorous
88          */
89         public function addPeer ($socketResource) {
90                 // Validate the socket
91                 $this->validateSocket($socketResource);
92
93                 // Default is this peer's IP
94                 $peerName = '0.0.0.0';
95
96                 // The socket resource should not match server socket
97                 if ($socketResource != $this->getListenerInstance()->getSocketResource()) {
98                         // Try to determine the peer's IP number
99                         if (!socket_getpeername($socketResource, $peerName)) {
100                                 // Get last error
101                                 $lastError = socket_last_error($socketResource);
102
103                                 // Doesn't work!
104                                 throw new InvalidSocketException(array($this, gettype($socketResource), $lastError, socket_strerror($lastError)), BaseListener::EXCEPTION_INVALID_SOCKET);
105                         } // END - if
106                 } else {
107                         // Server sockets won't work with socket_getpeername()
108                         $this->debugOutput('POOL: Socket resource is server socket (' . $socketResource . '). This is not a bug.');
109                 }
110
111                 // Output error message
112                 $this->debugOutput('POOL: Adding peer ' . $peerName . ', socketResource=' . $socketResource);
113
114                 // Add it finally to the pool
115                 $this->addPoolEntry($socketResource);
116         }
117
118         /**
119          * Getter for array of all socket resources
120          *
121          * @return      $sockets        An array with all sockets
122          */
123         public final function getAllSockets () {
124                 // Get the list
125                 $sockets = $this->getArrayFromList('pool');
126
127                 // Return it
128                 return $sockets;
129         }
130
131         /**
132          * "Getter" for a valid socket resource from given packae data.
133          *
134          * @param       $packageData            Raw package data
135          * @return      $socketResource         Socket resource
136          */
137         public function getSocketFromPackageData (array $packageData) {
138                 // Default is no socket
139                 $socketResource = false;
140
141                 // Get all sockets and check them, skip the server socket
142                 foreach ($this->getAllSockets() as $socket) {
143                         // Is this a server socket?
144                         if ($socket === $this->getListenerInstance()->getSocketResource()) {
145                                 // Skip this
146                                 continue;
147                         } // END - if
148
149                         // @TODO Check for IP
150                         die(__METHOD__.':'.print_r($packageData, true));
151                 } // END - foreach
152
153                 // Return the determined socket resource
154                 return $socketResource;
155         }
156 }
157
158 // [EOF]
159 ?>