]> git.mxchange.org Git - hub.git/blob - application/hub/main/decoder/package/class_PackageDecoder.php
Add the chunk handler instance and not the stacker, else two stacker instances will...
[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                 return $unhandledDataLeft;
77         }
78
79         /**
80          * Handles raw package data by decoding it
81          *
82          * @return      void
83          */
84         public function handleRawPackageData () {
85                 // Assert on it to make sure the next popNamed() call won't throw an exception
86                 assert($this->ifUnhandledRawPackageDataLeft());
87
88                 // "Pop" the next raw package content
89                 $rawPackageContent = $this->getHandlerInstance()->getStackerInstance()->popNamed(ChunkHandler::STACKER_NAME_ASSEMBLED_RAW_DATA);
90
91                 // Debug message
92                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: Got ' . strlen($rawPackageContent) . ' bytes from stack ' . ChunkHandler::STACKER_NAME_ASSEMBLED_RAW_DATA . ', decoding it ...');
93
94                 // "Decode" the raw package content by using the NetworkPackage instance
95                 $decodedData = $this->getPackageInstance()->decodeRawContent($rawPackageContent);
96
97                 // Debug message
98                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: decodedData()=' . strlen($decodedData) . ' ...');
99
100                 // Next get a recipient-discovery instance
101                 $discoveryInstance = PackageDiscoveryFactory::createPackageDiscoveryInstance();
102
103                 // ... then disover all recipient (might be only one), this package may shall be forwarded
104                 $discoveryInstance->discoverRawRecipients($decodedData);
105
106                 // Check for 'recipient' field (the 'sender' field and others are ignored here)
107                 if ($discoveryInstance->isRecipientListEmpty()) {
108                         // The recipient is this node so next stack it on 'decoded_package'
109                         /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: Pushing ' . strlen($decodedData) . ' bytes to stack ' . self::STACKER_NAME_DECODED_PACKAGE . ' ...');
110                         $this->getHandlerInstance()->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_PACKAGE, $decodedData);
111                 } else {
112                         // Forward the package to the next node
113                         $this->getPackageInstance()->forwardRawPackage($decodedData);
114                 }
115         }
116
117         /**
118          * Checks whether decoded packages have arrived (for this peer)
119          *
120          * @return      $ifRawPackagesLeft      Whether decoded packages have arrived
121          */
122         public function ifDeocedPackagesLeft () {
123                 // Check it ...
124                 $ifRawPackagesLeft = (!$this->getHandlerInstance()->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_PACKAGE));
125
126                 // ... return it
127                 return $ifRawPackagesLeft;
128         }
129
130         /**
131          * Handles received decoded packages internally (recipient is this node)
132          *
133          * @return      void
134          */
135         public function handleDecodedPackage () {
136                 // Assert on amount
137                 assert($this->ifDeocedPackagesLeft());
138
139                 // Get the next entry (assoziative array)
140                 $decodedData = $this->getHandlerInstance()->getStackerInstance()->popNamed(self::STACKER_NAME_DECODED_PACKAGE);
141
142                 // Handle it
143                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('PACKAGE-DECODER[' . __METHOD__ . ':' . __LINE__ . ']: decodedData()=' . strlen($decodedData));
144                 $this->getPackageInstance()->handleRawData($decodedData);
145         }
146 }
147
148 // [EOF]
149 ?>