]> git.mxchange.org Git - hub.git/blob - application/hub/main/handler/network/tcp/class_TcpNetworkPackageHandler.php
2d634cc3a5cdc2a0309edc7b8b3abcb1389c3a82
[hub.git] / application / hub / main / handler / network / tcp / class_TcpNetworkPackageHandler.php
1 <?php
2 /**
3  * A TCP network package handler
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 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 TcpNetworkPackageHandler extends BaseNetworkPackageHandler implements Networkable {
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          * @return      $handlerInstance                An instance of a Networkable class
39          */
40         public final static function createTcpNetworkPackageHandler () {
41                 // Get new instance
42                 $handlerInstance = new TcpNetworkPackageHandler();
43
44                 // Initialize new resolver instance
45                 $resolverInstance = ObjectFactory::createObjectByConfiguredName('network_state_resolver_class');
46
47                 // Set it in this class
48                 $handlerInstance->setResolverInstance($resolverInstance);
49
50                 // Return the prepared instance
51                 return $handlerInstance;
52         }
53
54         /**
55          * Verifies the package data itself (only rudymentary check)
56          *
57          * @param       $rawData        Raw package data (as string
58          * @return      $isValid        Wether the package data is valid
59          */
60         private function isPackageDataValid ($rawData) {
61                 // Default is not valid
62                 $isValid = false;
63
64                 // Convert it back into an array
65                 $packageData = explode(NetworkPackage::PACKAGE_DATA_SEPERATOR, $rawData);
66
67                 // This should be at least three entries: sender|recipient|raw data
68                 if (count($packageData) < 3) {
69                         // Not enougth fields in $packageData!
70                         $this->setErrorCode(self::PACKAGE_ERROR_INCOMPLETE_DATA);
71                 } elseif (count(explode(NetworkPackage::PACKAGE_MASK_SEPERATOR, $packageData[2])) < 2) {
72                         // Not entougth fields in content
73                         $this->setErrorCode(self::PACKAGE_ERROR_INVALID_CONTENT);
74                 } else {
75                         // This check went fine...
76                         $isValid = true;
77                 }
78
79                 // Return the result
80                 return $isValid;
81         }
82
83         /**
84          * Processes a package from given resource. This is mostly useful for TCP
85          * package handling and is implemented in the TcpListener class
86          *
87          * @param       $resource       A valid resource identifier
88          * @return      void
89          * @throws      InvalidResourceException        If the given resource is invalid
90          * @todo        ~10% done
91          */
92         public function processResourcePackage ($resource) {
93                 // Check the resource
94                 if (!is_resource($resource)) {
95                         // Throw an exception
96                         throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE);
97                 } // END - if
98
99                 // Init package data array
100                 $packageData = array();
101
102                 // Reset error code to unhandled
103                 $this->setErrorCode(self::SOCKET_ERROR_UNHANDLED);
104
105                 // Debug message
106                 $this->debugOutput('HANDLER: Handling TCP package from peer ' . $resource);
107
108                 // Read the raw data from socket
109                 $rawData = socket_read($resource, $this->getConfigInstance()->getConfigEntry('tcp_buffer_length'), PHP_NORMAL_READ);
110
111                 // Is it valid?
112                 if (($rawData === false) || (socket_last_error($resource) > 0)) {
113                         // Network error or connection lost
114                         $this->setErrorCode(socket_last_error($resource));
115                 } elseif (empty($rawData)) {
116                         // The peer did send nothing to us
117                         $this->setErrorCode(self::SOCKET_ERROR_EMPTY_DATA);
118                 } elseif (!$this->isPackageDataValid($rawData)) {
119                         // Invalid package data
120                         if ($this->getErrorCode() == self::SOCKET_ERROR_UNHANDLED) {
121                                 // Set it to PACKAGE_ERROR_INVALID_DATA, because SOCKET_ERROR_UNHANDLED should not be used
122                                 $this->setErrorCode(self::PACKAGE_ERROR_INVALID_DATA);
123                         } // END - if
124                 } else {
125                         // Prepare the package data
126                         $packageData = explode(NetworkPackage::PACKAGE_DATA_SEPERATOR, $rawData);
127
128                         // Low-level checks are all green
129                         $this->setErrorCode(self::PACKAGE_LEVEL_CHECK_OKAY);
130                 }
131
132                 // Get a state from the resolver for this package
133                 $stateInstance = $this->getResolverInstance()->resolveStateByPackage($this, $packageData);
134                 die('UNFINISHED:'.$stateInstance->__toString());
135         }
136 }
137
138 // [EOF]
139 ?>