]> git.mxchange.org Git - hub.git/blob - application/hub/main/decoder/package/class_PackageDecoder.php
This causes a lot debug output, but why does it not work?
[hub.git] / application / hub / main / decoder / package / class_PackageDecoder.php
1 <?php
2 /**
3  * A Package decoder class
4  *
5  * @author              Roland Haeder <webmaster@shipsimu.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.shipsimu.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 PackageDecoder extends BaseDecoder implements Decodeable {
25         /**
26          * Name for stacker for received packages
27          */
28         const STACKER_NAME_DECODED_PACKAGE = 'decoded_package';
29
30         /**
31          * Protected constructor
32          *
33          * @return      void
34          */
35         protected function __construct () {
36                 // Call parent constructor
37                 parent::__construct(__CLASS__);
38         }
39
40         /**
41          * Creates an instance of this class
42          *
43          * @param       $handlerInstance        An instance of a HandleableChunks class
44          * @return      $decoderInstance        An instance of a Decodeable class
45          */
46         public final static function createPackageDecoder (HandleableChunks $handlerInstance) {
47                 // Get new instance
48                 $decoderInstance = new PackageDecoder();
49
50                 // Init stacker for received packages
51                 $handlerInstance->getStackerInstance()->initStack(self::STACKER_NAME_DECODED_PACKAGE);
52
53                 // Set the handler instance here
54                 $decoderInstance->setHandlerInstance($handlerInstance);
55
56                 // Get a singleton network package instance
57                 $packageInstance = NetworkPackageFactory::createNetworkPackageInstance();
58
59                 // And set it in this decoder
60                 $decoderInstance->setPackageInstance($packageInstance);
61
62                 // Return the prepared instance
63                 return $decoderInstance;
64         }
65
66         /**
67          * Checks whether the assoziated stacker for raw package data has some entries left
68          *
69          * @return      $unhandledDataLeft      Whether some unhandled raw package data is left
70          */
71         public function ifUnhandledRawPackageDataLeft () {
72                 // Check it
73                 $unhandledDataLeft = (!$this->getHandlerInstance()->getStackerInstance()->isStackEmpty(ChunkHandler::STACKER_NAME_ASSEMBLED_RAW_DATA));
74
75                 // Return it
76                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: unhandledDataLeft=' . intval($unhandledDataLeft));
77                 return $unhandledDataLeft;
78         }
79
80         /**
81          * Handles raw package data by decoding it
82          *
83          * @return      void
84          */
85         public function handleRawPackageData () {
86                 // Assert on it to make sure the next popNamed() call won't throw an exception
87                 assert($this->ifUnhandledRawPackageDataLeft());
88
89                 // "Pop" the next raw package content
90                 $rawPackageContent = $this->getHandlerInstance()->getStackerInstance()->popNamed(ChunkHandler::STACKER_NAME_ASSEMBLED_RAW_DATA);
91
92                 // Debug message
93                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: Got ' . strlen($rawPackageContent) . ' bytes from stack ' . ChunkHandler::STACKER_NAME_ASSEMBLED_RAW_DATA . ', decoding it ...');
94
95                 // "Decode" the raw package content by using the NetworkPackage instance
96                 $decodedData = $this->getPackageInstance()->decodeRawContent($rawPackageContent);
97
98                 // Debug message
99                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: decodedData()=' . strlen($decodedData) . ' ...');
100
101                 // Next get a recipient-discovery instance
102                 $discoveryInstance = PackageDiscoveryFactory::createPackageDiscoveryInstance();
103
104                 // ... then disover all recipient (might be only one), this package may shall be forwarded
105                 $discoveryInstance->discoverRawRecipients($decodedData);
106
107                 // Check for 'recipient' field (the 'sender' field and others are ignored here)
108                 if ($discoveryInstance->isRecipientListEmpty()) {
109                         // The recipient is this node so next stack it on 'decoded_package'
110                         /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: Pushing ' . strlen($decodedData) . ' bytes to stack ' . self::STACKER_NAME_DECODED_PACKAGE . ' ...');
111                         $this->getHandlerInstance()->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_PACKAGE, $decodedData);
112                 } else {
113                         // Forward the package to the next node
114                         $this->getPackageInstance()->forwardRawPackage($decodedData);
115                 }
116         }
117
118         /**
119          * Checks whether decoded packages have arrived (for this peer)
120          *
121          * @return      $ifRawPackagesLeft      Whether decoded packages have arrived
122          */
123         public function ifDeocedPackagesLeft () {
124                 // Check it ...
125                 $ifRawPackagesLeft = (!$this->getHandlerInstance()->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_PACKAGE));
126
127                 // ... return it
128                 return $ifRawPackagesLeft;
129         }
130
131         /**
132          * Handles received decoded packages internally (recipient is this node)
133          *
134          * @return      void
135          */
136         public function handleDecodedPackage () {
137                 // Assert on amount
138                 assert($this->ifDeocedPackagesLeft());
139
140                 // Get the next entry (assoziative array)
141                 $decodedData = $this->getHandlerInstance()->getStackerInstance()->popNamed(self::STACKER_NAME_DECODED_PACKAGE);
142
143                 // Handle it
144                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: decodedData()=' . strlen($decodedData));
145                 $this->getPackageInstance()->handleRawData($decodedData);
146         }
147 }
148
149 // [EOF]
150 ?>