]> git.mxchange.org Git - hub.git/blob - application/hub/main/handler/chunks/class_ChunkHandler.php
79a08dd0eead52515046a54b7626b0ffc4012ca1
[hub.git] / application / hub / main / handler / chunks / class_ChunkHandler.php
1 <?php
2 /**
3  * A Chunk handler
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 ChunkHandler extends BaseHandler implements HandleableChunks, Registerable {
25         /**
26          * Stacker for chunks with final EOP
27          */
28         const STACKER_NAME_CHUNKS_WITH_FINAL_EOP = 'final_chunks';
29         const STACKER_NAME_CHUNKS_WITHOUT_FINAL  = 'pending_chunks';
30         const STACKER_NAME_ASSEMBLED_RAW_DATA    = 'chunk_raw_data';
31
32         /**
33          * Chunk splits:
34          * 0 = Hash
35          * 1 = Serial number
36          * 2 = Raw data
37          */
38         const CHUNK_SPLITS_INDEX_HASH     = 0;
39         const CHUNK_SPLITS_INDEX_SERIAL   = 1;
40         const CHUNK_SPLITS_INDEX_RAW_DATA = 2;
41
42         /**
43          * The final array for assembling the original package back together
44          */
45         private $finalPackageChunks = array();
46
47         /**
48          * Array of chunk hashes
49          */
50         private $chunkHashes = array();
51
52         /**
53          * Raw EOP chunk data in an array:
54          *
55          * 0 = Final hash,
56          * 1 = Hash of last chunk
57          */
58         private $eopChunk = array();
59
60         /**
61          * Raw package data
62          */
63         private $rawPackageData = '';
64
65         /**
66          * Protected constructor
67          *
68          * @return      void
69          */
70         protected function __construct () {
71                 // Call parent constructor
72                 parent::__construct(__CLASS__);
73
74                 // Set handler name
75                 $this->setHandlerName('chunk');
76
77                 // Initialize handler
78                 $this->initHandler();
79         }
80
81         /**
82          * Creates an instance of this class
83          *
84          * @return      $handlerInstance        An instance of a chunk Handler class
85          */
86         public final static function createChunkHandler () {
87                 // Get new instance
88                 $handlerInstance = new ChunkHandler();
89
90                 // Get a FIFO stacker
91                 $stackerInstance = ObjectFactory::createObjectByConfiguredName('chunk_handler_stacker_class');
92
93                 // Init all stacker
94                 $stackerInstance->initStacks(array(
95                         self::STACKER_NAME_CHUNKS_WITH_FINAL_EOP,
96                         self::STACKER_NAME_CHUNKS_WITHOUT_FINAL,
97                         self::STACKER_NAME_ASSEMBLED_RAW_DATA
98                 ));
99
100                 // Set the stacker in this handler
101                 $handlerInstance->setStackerInstance($stackerInstance);
102
103                 // Get a crypto instance ...
104                 $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class');
105
106                 // ... and set it in this handler
107                 $handlerInstance->setCryptoInstance($cryptoInstance);
108
109                 // Get a fragmenter instance for later verification of serial numbers (e.g. if all are received)
110                 $fragmenterInstance = FragmenterFactory::createFragmenterInstance('package');
111
112                 // Set it in this handler
113                 $handlerInstance->setFragmenterInstance($fragmenterInstance);
114
115                 // Return the prepared instance
116                 return $handlerInstance;
117         }
118
119         /**
120          * Initializes the handler
121          *
122          * @return      void
123          */
124         private function initHandler () {
125                 // Noisy debug line:
126                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Initializing handler ...');
127
128                 // Init finalPackageChunks
129                 $this->finalPackageChunks = array(
130                         // Array for package content
131                         'content'        => array(),
132                         // ... and for the hashes
133                         'hashes'         => array(),
134                         // ... marker for that the final array is complete for assembling all chunks
135                         'is_complete'    => FALSE,
136                         // ... steps done to assemble all chunks
137                         'assemble_steps' => 0,
138                 );
139
140                 // ... chunkHashes:
141                 $this->chunkHashes = array();
142
143                 // ... eopChunk:
144                 $this->eopChunk = array(
145                         0 => 'INVALID',
146                         1 => 'INVALID',
147                 );
148         }
149
150         /**
151          * Checks whether the hash generated from package content is the same ("valid") as given
152          *
153          * @param       $chunkSplits    An array from a splitted chunk
154          * @return      $isValid                Whether the hash is "valid"
155          */
156         private function isChunkHashValid (array $chunkSplits) {
157                 // Noisy debug line:
158                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: chunkSplits=' . print_r($chunkSplits, TRUE));
159
160                 // Assert on some elements
161                 assert(isset($chunkSplits[self::CHUNK_SPLITS_INDEX_RAW_DATA]));
162                 assert(isset($chunkSplits[self::CHUNK_SPLITS_INDEX_HASH]));
163
164                 // Now hash the raw data again
165                 $chunkHash = $this->getCryptoInstance()->hashString($chunkSplits[self::CHUNK_SPLITS_INDEX_RAW_DATA], $chunkSplits[self::CHUNK_SPLITS_INDEX_HASH], FALSE);
166
167                 // Check it
168                 $isValid = ($chunkSplits[self::CHUNK_SPLITS_INDEX_HASH] === $chunkHash);
169
170                 // Debug output
171                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: chunkHash=' . $chunkHash . ',isValid=' . intval($isValid));
172
173                 // ... and return it
174                 return $isValid;
175         }
176
177         /**
178          * Checks whether the given serial number is valid
179          *
180          * @param       $serialNumber   A serial number from a chunk
181          * @return      $isValid                Whether the serial number is valid
182          */
183         private function isSerialNumberValid ($serialNumber) {
184                 // Check it
185                 $isValid = ((strlen($serialNumber) == PackageFragmenter::MAX_SERIAL_LENGTH) && ($this->hexval($serialNumber, FALSE) === $serialNumber));
186
187                 // Return result
188                 return $isValid;
189         }
190
191         /**
192          * Adds the chunk to the final array which will be used for the final step
193          * which will be to assemble all chunks back to the original package content
194          * and for the final hash check.
195          *
196          * This method may throw an exception if a chunk with the same serial number
197          * has already been added to avoid mixing chunks from different packages.
198          *
199          * @param       $chunkSplits    An array from a splitted chunk
200          * @return      void
201          */
202         private function addChunkToFinalArray (array $chunkSplits) {
203                 // Is the serial number (index 1) already been added?
204                 if (isset($this->finalPackageChunks[$chunkSplits[self::CHUNK_SPLITS_INDEX_SERIAL]])) {
205                         // Then throw an exception
206                         throw new ChunkAlreadyAssembledException(array($this, $chunkSplits), self::EXCEPTION_CHUNK_ALREADY_ASSEMBLED);
207                 } // END - if
208
209                 // Debug message
210                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: serialNumber=' . $chunkSplits[self::CHUNK_SPLITS_INDEX_SERIAL] . ',hash=' . $chunkSplits[self::CHUNK_SPLITS_INDEX_HASH]);
211
212                 // Add the chunk data (index 2) to the final array and use the serial number as index
213                 $this->finalPackageChunks['content'][$chunkSplits[self::CHUNK_SPLITS_INDEX_SERIAL]] = $chunkSplits[self::CHUNK_SPLITS_INDEX_RAW_DATA];
214
215                 // ... and the hash as well
216                 $this->finalPackageChunks['hashes'][$chunkSplits[self::CHUNK_SPLITS_INDEX_SERIAL]] = $chunkSplits[self::CHUNK_SPLITS_INDEX_HASH];
217         }
218
219         /**
220          * Marks the final array as completed, do only this if you really have all
221          * chunks together including EOP and "hash chunk".
222          *
223          * @return      void
224          */
225         private function markFinalArrayAsCompleted () {
226                 /*
227                  * As for now, just set the array element. If any further steps are
228                  * being added, this should always be the last step.
229                  */
230                 $this->finalPackageChunks['is_complete'] = TRUE;
231         }
232
233         /**
234          * Sorts the chunks array by using the serial number as a sorting key. In
235          * most situations a call of ksort() is enough to accomblish this. So this
236          * method may only call ksort() on the chunks array.
237          *
238          * This method sorts 'content' and 'hashes' so both must have used the
239          * serial numbers as array indexes.
240          *
241          * @return      void
242          */
243         private function sortChunksArray () {
244                 // Sort 'content' first
245                 ksort($this->finalPackageChunks['content']);
246
247                 // ... then 'hashes'
248                 ksort($this->finalPackageChunks['hashes']);
249         }
250
251         /**
252          * Prepares the package assemble by removing last chunks (last shall be
253          * hash chunk, pre-last shall be EOP chunk) and verify that all serial
254          * numbers are valid (same as PackageFragmenter class would generate).
255          *
256          * @return      void
257          */
258         private function preparePackageAssmble () {
259                 // Make sure both arrays have same count (this however should always be TRUE)
260                 assert(count($this->finalPackageChunks['hashes']) == count($this->finalPackageChunks['content']));
261                 //* DIE: */ exit(__METHOD__ . ':finalPackageChunks='.print_r($this->finalPackageChunks['content'], TRUE));
262
263                 /*
264                  * Remove last element (hash chunk) from 'hashes'. This hash will never
265                  * be needed, so ignore it.
266                  */
267                 array_pop($this->finalPackageChunks['hashes']);
268
269                 // ... and from 'content' as well but save it for later use
270                 $this->chunkHashes = explode(PackageFragmenter::CHUNK_HASH_SEPARATOR, substr(array_pop($this->finalPackageChunks['content']), strlen(PackageFragmenter::HASH_CHUNK_IDENTIFIER)));
271
272                 // Remove EOP chunk and keep a copy of it
273                 array_pop($this->finalPackageChunks['hashes']);
274                 $this->eopChunk = explode(PackageFragmenter::CHUNK_HASH_SEPARATOR, substr(array_pop($this->finalPackageChunks['content']), strlen(PackageFragmenter::END_OF_PACKAGE_IDENTIFIER)));
275
276                 // Verify all serial numbers
277                 $this->verifyChunkSerialNumbers();
278         }
279
280         /**
281          * Verifies all chunk serial numbers by using a freshly initialized
282          * fragmenter instance. Do ALWAYS sort the array and array_pop() the hash
283          * chunk before calling this method to avoid re-requests of many chunks.
284          *
285          * @return      void
286          */
287         private function verifyChunkSerialNumbers () {
288                 // Reset the serial number generator
289                 $this->getFragmenterInstance()->resetSerialNumber();
290
291                 // "Walk" through all (content) chunks
292                 foreach ($this->finalPackageChunks['content'] as $serialNumber => $content) {
293                         // Get next serial number
294                         $nextSerial = $this->getFragmenterInstance()->getNextHexSerialNumber();
295
296                         // Debug output
297                         //* NOISY-DEBUG */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: serialNumber=' . $serialNumber . ',nextSerial=' . $nextSerial);
298
299                         // Is it not the same? Then re-request it
300                         if ($serialNumber != $nextSerial) {
301                                 // This is invalid, so remove it
302                                 unset($this->finalPackageChunks['content'][$serialNumber]);
303                                 unset($this->finalPackageChunks['hashes'][$serialNumber]);
304
305                                 // And re-request it with valid serial number (and hash chunk)
306                                 $this->rerequestChunkBySerialNumber($nextSerial);
307                         } // END - if
308                 } // END - foreach
309         }
310
311         /**
312          * Assembles and verifies ("final check") chunks back together to the
313          * original package (raw data for the start). This method should only be
314          * called AFTER the EOP and final-chunk chunk have been removed.
315          *
316          * @return      void
317          */
318         private function assembleAllChunksToPackage () {
319                 // If chunkHashes is not filled, don't continue
320                 assert(count($this->chunkHashes) > 0);
321
322                 // Init raw package data string
323                 $this->rawPackageData = '';
324
325                 // That went well, so start assembling all chunks
326                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Handling ' . count($this->finalPackageChunks['content']) . ' entries ...');
327                 foreach ($this->finalPackageChunks['content'] as $serialNumber => $content) {
328                         // Debug message
329                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: serialNumber=' . $serialNumber . ' - validating ...');
330                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('finalPackageChunks=' . print_r($this->finalPackageChunks, TRUE) . 'chunkHashes=' . print_r($this->chunkHashes, TRUE));
331
332                         // Is this chunk valid? This should be the case
333                         assert($this->isChunkHashValid(array(
334                                 self::CHUNK_SPLITS_INDEX_HASH     => $this->finalPackageChunks['hashes'][$serialNumber],
335                                 self::CHUNK_SPLITS_INDEX_RAW_DATA => $content
336                         )));
337
338                         // ... and is also in the hash chunk?
339                         assert(in_array($this->finalPackageChunks['hashes'][$serialNumber], $this->chunkHashes));
340
341                         // Verification okay, add it to the raw data
342                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Adding ' . strlen($content) . ' bytes as raw package data ...');
343                         $this->rawPackageData .= $content;
344                 } // END - foreach
345
346                 // Debug output
347                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: eopChunk[1]=' . $this->eopChunk[1] . ',index=' . (count($this->chunkHashes) - 2) . ',chunkHashes='.print_r($this->chunkHashes, TRUE));
348
349                 // The last chunk hash must match with the one from eopChunk[1]
350                 assert($this->eopChunk[1] == $this->chunkHashes[count($this->chunkHashes) - 2]);
351         }
352
353         /**
354          * Verifies the finally assembled raw package data by comparing it against
355          * the final hash.
356          *
357          * @return      void
358          */
359         private function verifyRawPackageData () {
360                 // Hash the raw package data for final verification
361                 $finalHash = $this->getCryptoInstance()->hashString($this->rawPackageData, $this->eopChunk[0], FALSE);
362
363                 // Is it the same?
364                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: eopChunk[1]=' . $this->eopChunk[1] . ',finalHash=' . $finalHash);
365                 assert($finalHash == $this->eopChunk[0]);
366         }
367
368         /**
369          * Adds all chunks if the last one verifies as a 'final chunk'.
370          *
371          * @param       $chunks         An array with chunks, the last one should be a 'final'
372          * @return      void
373          * @throws      FinalChunkVerificationException         If the final chunk does not start with 'EOP:'
374          */
375         public function addAllChunksWithFinal (array $chunks) {
376                 // Try to validate the final chunk
377                 try {
378                         // Validate final chunk
379                         $this->isValidFinalChunk($chunks);
380                 } catch (AssertionException $e) {
381                         // Last chunk is not valid
382                         throw new FinalChunkVerificationException(array($this, $chunks, $e), BaseListener::EXCEPTION_FINAL_CHUNK_VERIFICATION);
383                 }
384
385                 // Do we have some pending chunks (no final)?
386                 while (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_CHUNKS_WITHOUT_FINAL)) {
387                         // Then get it first and add it before the EOP chunks
388                         array_unshift($chunks, $this->getStackerInstance()->popNamed(self::STACKER_NAME_CHUNKS_WITHOUT_FINAL));
389                 } // END - while
390
391                 // Add all chunks to the FIFO stacker
392                 foreach ($chunks as $chunk) {
393                         // Add the chunk
394                         $this->getStackerInstance()->pushNamed(self::STACKER_NAME_CHUNKS_WITH_FINAL_EOP, $chunk);
395                 } // END - foreach
396         }
397
398         /**
399          * Adds all chunks and wait for more (e.g. incomplete transmission)
400          *
401          * @param       $chunks         An array with chunks, the last one should be a 'final'
402          * @return      void
403          */
404         public function addAllChunksWait (array $chunks) {
405                 // Add all chunks to the FIFO stacker
406                 foreach ($chunks as $chunk) {
407                         // Add the chunk
408                         $this->getStackerInstance()->pushNamed(self::STACKER_NAME_CHUNKS_WITHOUT_FINAL, $chunk);
409                 } // END - foreach
410         }
411
412         /**
413          * Checks whether unhandled chunks are available
414          *
415          * @return      $unhandledChunks        Whether unhandled chunks are left
416          */
417         public function ifUnhandledChunksWithFinalAvailable () {
418                 // Simply check if the stacker is not empty
419                 $unhandledChunks = $this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_CHUNKS_WITH_FINAL_EOP) === FALSE;
420
421                 // Return result
422                 return $unhandledChunks;
423         }
424
425         /**
426          * Handles available chunks by processing one-by-one (not all together,
427          * this would slow-down the whole application) with the help of an
428          * iterator.
429          *
430          * @return      void
431          */
432         public function handleAvailableChunksWithFinal () {
433                 // First check if there are undhandled chunks available
434                 assert($this->ifUnhandledChunksWithFinalAvailable());
435
436                 // Get an entry from the stacker
437                 $chunk = $this->getStackerInstance()->popNamed(self::STACKER_NAME_CHUNKS_WITH_FINAL_EOP);
438
439                 // Split the string with proper separator character
440                 $chunkSplits = explode(PackageFragmenter::CHUNK_DATA_HASH_SEPARATOR, $chunk);
441
442                 /*
443                  * Make sure three elements are always found:
444                  * 0 = Hash
445                  * 1 = Serial number
446                  * 2 = Raw data
447                  */
448                 assert(count($chunkSplits) == 3);
449
450                 // Is the generated hash from data same ("valid") as given hash?
451                 if (!$this->isChunkHashValid($chunkSplits)) {
452                         // Do some logging
453                         self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Chunk content is not validating against given hash.');
454
455                         // Re-request this chunk (trust the hash in index # 0)
456                         $this->rerequestChunkBySplitsArray($chunkSplits);
457
458                         // Don't process this chunk
459                         return;
460                 } // END - if
461
462                 // Is the serial number valid (chars 0-9, length equals PackageFragmenter::MAX_SERIAL_LENGTH)?
463                 if (!$this->isSerialNumberValid($chunkSplits[self::CHUNK_SPLITS_INDEX_SERIAL])) {
464                         // Do some logging
465                         self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Chunk serial number ' . $chunkSplits[self::CHUNK_SPLITS_INDEX_SERIAL] . ' for hash ' . $chunkSplits[self::CHUNK_SPLITS_INDEX_HASH] . ' is invalid.');
466
467                         // Re-request this chunk
468                         $this->rerequestChunkBySplitsArray($chunkSplits);
469
470                         // Don't process this chunk
471                         return;
472                 } // END - if
473
474                 /*
475                  * It is now known that (as long as the hash algorithm has no
476                  * collisions) the content is the same as the sender sends it to this
477                  * peer.
478                  *
479                  * And also the serial number is valid (basicly) at this point. Now the
480                  * chunk can be added to the final array.
481                  */
482                 $this->addChunkToFinalArray($chunkSplits);
483
484                 // Is the stack now empty?
485                 if ($this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_CHUNKS_WITH_FINAL_EOP)) {
486                         // Then mark the final array as complete
487                         $this->markFinalArrayAsCompleted();
488                 } // END - if
489         }
490
491         /**
492          * Checks whether unassembled chunks are available (ready) in final array
493          *
494          * @return      $unassembledChunksAvailable             Whether unassembled chunks are available
495          */
496         public function ifUnassembledChunksAvailable () {
497                 // For now do only check the array element 'is_complete'
498                 $unassembledChunksAvailable = ($this->finalPackageChunks['is_complete'] === TRUE);
499
500                 // Return status
501                 return $unassembledChunksAvailable;
502         }
503
504         /**
505          * Assembles all chunks (except EOP and "hash chunk") back together to the original package data.
506          *
507          * This is done by the following steps:
508          *
509          * 1) Sort the final array with ksort(). This will bring the "hash
510          *    chunk" up to the last array index and the EOP chunk to the
511          *    pre-last array index
512          * 2) Assemble all chunks except two last (see above step)
513          * 3) While so, do the final check on all hashes
514          * 4) If the package is assembled back together, hash it again for
515          *    the very final verification.
516          *
517          * @return      void
518          */
519         public function assembleChunksFromFinalArray () {
520                 // Make sure the final array is really completed
521                 assert($this->ifUnassembledChunksAvailable());
522
523                 // Count up stepping
524                 $this->finalPackageChunks['assemble_steps']++;
525
526                 // Do the next step
527                 switch ($this->finalPackageChunks['assemble_steps']) {
528                         case 1: // Sort the chunks array (the serial number shall act as a sorting key)
529                                 $this->sortChunksArray();
530                                 break;
531
532                         case 2: // Prepare the assemble by removing last two indexes
533                                 $this->preparePackageAssmble();
534                                 break;
535
536                         case 3: // Assemble all chunks back together to the original package
537                                 $this->assembleAllChunksToPackage();
538                                 break;
539
540                         case 4: // Verify the raw data by hashing it again
541                                 $this->verifyRawPackageData();
542                                 break;
543
544                         case 5: // Re-initialize handler to reset it to the old state
545                                 $this->initHandler();
546                                 break;
547
548                         default: // Invalid step found
549                                 self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Invalid step ' . $this->finalPackageChunks['assemble_steps'] . ' detected.');
550                                 break;
551                 } // END - switch
552         }
553
554         /**
555          * Checks whether the raw package data has been assembled back together.
556          * This can be safely assumed when rawPackageData is not empty and the
557          * collection of all chunks is FALSE (because initHandler() will reset it).
558          *
559          * @return      $isRawPackageDataAvailable      Whether raw package data is available
560          */
561         public function ifRawPackageDataIsAvailable () {
562                 // Check it
563                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: this->rawPackageData()=' . strlen($this->rawPackageData) . ',ifUnassembledChunksAvailable()=' . intval($this->ifUnassembledChunksAvailable()));
564                 $isRawPackageDataAvailable = ((!empty($this->rawPackageData)) && (!$this->ifUnassembledChunksAvailable()));
565
566                 // Return it
567                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: isRawPackageDataAvailable=' . intval($isRawPackageDataAvailable));
568                 return $isRawPackageDataAvailable;
569         }
570
571         /**
572          * Handles the finally assembled raw package data by feeding it into another
573          * stacker for further decoding/processing.
574          *
575          * @return      void
576          */
577         public function handledAssembledRawPackageData () {
578                 // Assert to make sure that there is raw package data available
579                 assert($this->ifRawPackageDataIsAvailable());
580
581                 // Then feed it into the next stacker
582                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CHUNK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Pushing ' . strlen($this->rawPackageData) . ' bytes to stack ' . self::STACKER_NAME_ASSEMBLED_RAW_DATA . ' ...');
583                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_ASSEMBLED_RAW_DATA, $this->rawPackageData);
584
585                 // ... and reset it
586                 $this->rawPackageData = '';
587         }
588 }
589
590 // [EOF]
591 ?>