]> git.mxchange.org Git - hub.git/blob - application/hub/main/package/class_NetworkPackage.php
Added initial crawler stuff:
[hub.git] / application / hub / main / package / class_NetworkPackage.php
1 <?php
2 /**
3  * A NetworkPackage class. This class implements Deliverable and Receivable
4  * because all network packages should be deliverable to other nodes and
5  * receivable from other nodes. It further provides methods for reading raw
6  * content from template engines and feeding it to the stacker for undeclared
7  * packages.
8  *
9  * The factory method requires you to provide a compressor class (which must
10  * implement the Compressor interface). If you don't want any compression (not
11  * adviceable due to increased network load), please use the NullCompressor
12  * class and encode it with BASE64 for a more error-free transfer over the
13  * Internet.
14  *
15  * For performance reasons, this class should only be instanciated once and then
16  * used as a "pipe-through" class.
17  *
18  * @author              Roland Haeder <webmaster@shipsimu.org>
19  * @version             0.0.0
20  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Hub Developer Team
21  * @license             GNU GPL 3.0 or any newer version
22  * @link                http://www.shipsimu.org
23  * @todo                Needs to add functionality for handling the object's type
24  *
25  * This program is free software: you can redistribute it and/or modify
26  * it under the terms of the GNU General Public License as published by
27  * the Free Software Foundation, either version 3 of the License, or
28  * (at your option) any later version.
29  *
30  * This program is distributed in the hope that it will be useful,
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33  * GNU General Public License for more details.
34  *
35  * You should have received a copy of the GNU General Public License
36  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
37  */
38 class NetworkPackage extends BaseHubSystem implements Deliverable, Receivable, Registerable, Visitable {
39         /**
40          * Package mask for compressing package data:
41          * 0: Compressor extension
42          * 1: Raw package data
43          * 2: Tags, seperated by semicolons, no semicolon is required if only one tag is needed
44          * 3: Checksum
45          *                     0  1  2  3
46          */
47         const PACKAGE_MASK = '%s%s%s%s%s%s%s';
48
49         /**
50          * Separator for the above mask
51          */
52         const PACKAGE_MASK_SEPARATOR = '^';
53
54         /**
55          * Size of an array created by invoking
56          * explode(NetworkPackage::PACKAGE_MASK_SEPARATOR, $content).
57          */
58         const PACKAGE_CONTENT_ARRAY_SIZE = 4;
59
60         /**
61          * Separator for checksum
62          */
63         const PACKAGE_CHECKSUM_SEPARATOR = '_';
64
65         /**
66          * Array indexes for above mask, start with zero
67          */
68         const INDEX_COMPRESSOR_EXTENSION = 0;
69         const INDEX_PACKAGE_DATA         = 1;
70         const INDEX_TAGS                 = 2;
71         const INDEX_CHECKSUM             = 3;
72
73         /**
74          * Array indexes for raw package array
75          */
76         const INDEX_PACKAGE_SENDER    = 0;
77         const INDEX_PACKAGE_RECIPIENT = 1;
78         const INDEX_PACKAGE_CONTENT   = 2;
79         const INDEX_PACKAGE_STATUS    = 3;
80         const INDEX_PACKAGE_SIGNATURE = 4;
81
82         /**
83          * Size of the decoded data array ('status' is not included)
84          */
85         const DECODED_DATA_ARRAY_SIZE = 4;
86
87         /**
88          * Named array elements for decoded package content
89          */
90         const PACKAGE_CONTENT_EXTENSION = 'compressor';
91         const PACKAGE_CONTENT_MESSAGE   = 'message';
92         const PACKAGE_CONTENT_TAGS      = 'tags';
93         const PACKAGE_CONTENT_CHECKSUM  = 'checksum';
94
95         /**
96          * Named array elements for package data
97          */
98         const PACKAGE_DATA_SENDER    = 'sender';
99         const PACKAGE_DATA_RECIPIENT = 'recipient';
100         const PACKAGE_DATA_PROTOCOL  = 'protocol';
101         const PACKAGE_DATA_CONTENT   = 'content';
102         const PACKAGE_DATA_STATUS    = 'status';
103         const PACKAGE_DATA_SIGNATURE = 'signature';
104
105         /**
106          * All package status
107          */
108         const PACKAGE_STATUS_NEW     = 'new';
109         const PACKAGE_STATUS_FAILED  = 'failed';
110         const PACKAGE_STATUS_DECODED = 'decoded';
111         const PACKAGE_STATUS_FAKED   = 'faked';
112
113         /**
114          * Constants for message data array
115          */
116         const MESSAGE_ARRAY_DATA = 'message_data';
117         const MESSAGE_ARRAY_TYPE = 'message_type';
118
119         /**
120          * Generic answer status field
121          */
122
123         /**
124          * Tags separator
125          */
126         const PACKAGE_TAGS_SEPARATOR = ';';
127
128         /**
129          * Raw package data separator
130          */
131         const PACKAGE_DATA_SEPARATOR = '#';
132
133         /**
134          * Separator for more than one recipient
135          */
136         const PACKAGE_RECIPIENT_SEPARATOR = ':';
137
138         /**
139          * Network target (alias): 'upper nodes'
140          */
141         const NETWORK_TARGET_UPPER = 'upper';
142
143         /**
144          * Network target (alias): 'self'
145          */
146         const NETWORK_TARGET_SELF = 'self';
147
148         /**
149          * Network target (alias): 'dht'
150          */
151         const NETWORK_TARGET_DHT = 'dht';
152
153         /**
154          * TCP package size in bytes
155          */
156         const TCP_PACKAGE_SIZE = 512;
157
158         /**************************************************************************
159          *                    Stacker for out-going packages                      *
160          **************************************************************************/
161
162         /**
163          * Stacker name for "undeclared" packages
164          */
165         const STACKER_NAME_UNDECLARED = 'package_undeclared';
166
167         /**
168          * Stacker name for "declared" packages (which are ready to send out)
169          */
170         const STACKER_NAME_DECLARED = 'package_declared';
171
172         /**
173          * Stacker name for "out-going" packages
174          */
175         const STACKER_NAME_OUTGOING = 'package_outgoing';
176
177         /**************************************************************************
178          *                     Stacker for incoming packages                      *
179          **************************************************************************/
180
181         /**
182          * Stacker name for "incoming" decoded raw data
183          */
184         const STACKER_NAME_DECODED_INCOMING = 'package_decoded_data';
185
186         /**
187          * Stacker name for handled decoded raw data
188          */
189         const STACKER_NAME_DECODED_HANDLED = 'package_handled_decoded';
190
191         /**
192          * Stacker name for "chunked" decoded raw data
193          */
194         const STACKER_NAME_DECODED_CHUNKED = 'package_chunked_decoded';
195
196         /**************************************************************************
197          *                     Stacker for incoming messages                      *
198          **************************************************************************/
199
200         /**
201          * Stacker name for new messages
202          */
203         const STACKER_NAME_NEW_MESSAGE = 'package_new_message';
204
205         /**
206          * Stacker name for processed messages
207          */
208         const STACKER_NAME_PROCESSED_MESSAGE = 'package_processed_message';
209
210         /**************************************************************************
211          *                      Stacker for raw data handling                     *
212          **************************************************************************/
213
214         /**
215          * Stacker for outgoing data stream
216          */
217         const STACKER_NAME_OUTGOING_STREAM = 'outgoing_stream';
218
219         /**
220          * Array index for final hash
221          */
222         const RAW_FINAL_HASH_INDEX = 'hash';
223
224         /**
225          * Array index for encoded data
226          */
227         const RAW_ENCODED_DATA_INDEX = 'data';
228
229         /**
230          * Array index for sent bytes
231          */
232         const RAW_SENT_BYTES_INDEX = 'sent';
233
234         /**
235          * Array index for socket resource
236          */
237         const RAW_SOCKET_INDEX = 'socket';
238
239         /**
240          * Array index for buffer size
241          */
242         const RAW_BUFFER_SIZE_INDEX = 'buffer';
243
244         /**
245          * Array index for diff between buffer and sent bytes
246          */
247         const RAW_DIFF_INDEX = 'diff';
248
249         /**************************************************************************
250          *                            Protocol names                              *
251          **************************************************************************/
252         const PROTOCOL_TCP = 'TCP';
253         const PROTOCOL_UDP = 'UDP';
254
255         /**
256          * Protected constructor
257          *
258          * @return      void
259          */
260         protected function __construct () {
261                 // Call parent constructor
262                 parent::__construct(__CLASS__);
263         }
264
265         /**
266          * Creates an instance of this class
267          *
268          * @param       $compressorInstance             A Compressor instance for compressing the content
269          * @return      $packageInstance                An instance of a Deliverable class
270          */
271         public static final function createNetworkPackage (Compressor $compressorInstance) {
272                 // Get new instance
273                 $packageInstance = new NetworkPackage();
274
275                 // Now set the compressor instance
276                 $packageInstance->setCompressorInstance($compressorInstance);
277
278                 /*
279                  * We need to initialize a stack here for our packages even for those
280                  * which have no recipient address and stamp... ;-) This stacker will
281                  * also be used for incoming raw data to handle it.
282                  */
283                 $stackerInstance = ObjectFactory::createObjectByConfiguredName('network_package_stacker_class');
284
285                 // At last, set it in this class
286                 $packageInstance->setStackerInstance($stackerInstance);
287
288                 // Init all stacker
289                 $packageInstance->initStacks();
290
291                 // Get a visitor instance for speeding up things and set it
292                 $visitorInstance = ObjectFactory::createObjectByConfiguredName('node_raw_data_monitor_visitor_class', array($packageInstance));
293                 $packageInstance->setVisitorInstance($visitorInstance);
294
295                 // Get crypto instance and set it, too
296                 $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class');
297                 $packageInstance->setCryptoInstance($cryptoInstance);
298
299                 // Get a singleton package assembler instance from factory and set it here, too
300                 $assemblerInstance = PackageAssemblerFactory::createAssemblerInstance($packageInstance);
301                 $packageInstance->setAssemblerInstance($assemblerInstance);
302
303                 // Return the prepared instance
304                 return $packageInstance;
305         }
306
307         /**
308          * Initialize all stackers
309          *
310          * @param       $forceReInit    Whether to force reinitialization of all stacks
311          * @return      void
312          */
313         protected function initStacks ($forceReInit = FALSE) {
314                 // Initialize all
315                 $this->getStackerInstance()->initStacks(array(
316                         self::STACKER_NAME_UNDECLARED,
317                         self::STACKER_NAME_DECLARED,
318                         self::STACKER_NAME_OUTGOING,
319                         self::STACKER_NAME_DECODED_INCOMING,
320                         self::STACKER_NAME_DECODED_HANDLED,
321                         self::STACKER_NAME_DECODED_CHUNKED,
322                         self::STACKER_NAME_NEW_MESSAGE,
323                         self::STACKER_NAME_PROCESSED_MESSAGE,
324                         self::STACKER_NAME_OUTGOING_STREAM
325                 ), $forceReInit);
326         }
327
328         /**
329          * "Getter" for hash from given content
330          *
331          * @param       $content        Raw package content
332          * @return      $hash           Hash for given package content
333          */
334         private function getHashFromContent ($content) {
335                 // Debug message
336                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: content[md5]=' . md5($content) . ',sender=' . $this->getSessionId() . ',compressor=' . $this->getCompressorInstance()->getCompressorExtension());
337
338                 // Create the hash
339                 // @TODO md5() is very weak, but it needs to be fast
340                 $hash = md5(
341                         $content .
342                         self::PACKAGE_CHECKSUM_SEPARATOR .
343                         $this->getSessionId() .
344                         self::PACKAGE_CHECKSUM_SEPARATOR .
345                         $this->getCompressorInstance()->getCompressorExtension()
346                 );
347
348                 // Debug message
349                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: content[md5]=' . md5($content) . ',sender=' . $this->getSessionId() . ',hash=' . $hash . ',compressor=' . $this->getCompressorInstance()->getCompressorExtension());
350
351                 // And return it
352                 return $hash;
353         }
354
355         /**
356          * Checks whether the checksum (sometimes called "hash") is the same
357          *
358          * @param       $decodedContent         Package raw content
359          * @param       $decodedData            Whole raw package data array
360          * @return      $isChecksumValid        Whether the checksum is the same
361          */
362         private function isChecksumValid (array $decodedContent, array $decodedData) {
363                 // Get checksum
364                 $checksum = $this->getHashFromContentSessionId($decodedContent, $decodedData[self::PACKAGE_DATA_SENDER]);
365
366                 // Is it the same?
367                 $isChecksumValid = ($checksum == $decodedContent[self::PACKAGE_CONTENT_CHECKSUM]);
368
369                 // Return it
370                 return $isChecksumValid;
371         }
372
373         /**
374          * Change the package with given status in given stack
375          *
376          * @param       $packageData    Raw package data in an array
377          * @param       $stackerName    Name of the stacker
378          * @param       $newStatus              New status to set
379          * @return      void
380          */
381         private function changePackageStatus (array $packageData, $stackerName, $newStatus) {
382                 // Skip this for empty stacks
383                 if ($this->getStackerInstance()->isStackEmpty($stackerName)) {
384                         // This avoids an exception after all packages has failed
385                         return;
386                 } // END - if
387
388                 // Pop the entry (it should be it)
389                 $nextData = $this->getStackerInstance()->popNamed($stackerName);
390
391                 // Compare both signatures
392                 assert($nextData[self::PACKAGE_DATA_SIGNATURE] == $packageData[self::PACKAGE_DATA_SIGNATURE]);
393
394                 // Temporary set the new status
395                 $packageData[self::PACKAGE_DATA_STATUS] = $newStatus;
396
397                 // And push it again
398                 $this->getStackerInstance()->pushNamed($stackerName, $packageData);
399         }
400
401         /**
402          * "Getter" for hash from given content and sender's session id
403          *
404          * @param       $decodedContent         Raw package content
405          * @param       $sessionId                      Session id of the sender
406          * @return      $hash                           Hash for given package content
407          */
408         public function getHashFromContentSessionId (array $decodedContent, $sessionId) {
409                 // Debug message
410                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: content[md5]=' . md5($decodedContent[self::PACKAGE_CONTENT_MESSAGE]) . ',sender=' . $sessionId . ',compressor=' . $decodedContent[self::PACKAGE_CONTENT_EXTENSION]);
411
412                 // Create the hash
413                 // @TODO md5() is very weak, but it needs to be fast
414                 $hash = md5(
415                         $decodedContent[self::PACKAGE_CONTENT_MESSAGE] .
416                         self::PACKAGE_CHECKSUM_SEPARATOR .
417                         $sessionId .
418                         self::PACKAGE_CHECKSUM_SEPARATOR .
419                         $decodedContent[self::PACKAGE_CONTENT_EXTENSION]
420                 );
421
422                 // And return it
423                 return $hash;
424         }
425
426         ///////////////////////////////////////////////////////////////////////////
427         //                   Delivering packages / raw data
428         ///////////////////////////////////////////////////////////////////////////
429
430         /**
431          * Declares the given raw package data by discovering recipients
432          *
433          * @param       $packageData    Raw package data in an array
434          * @return      void
435          */
436         private function declareRawPackageData (array $packageData) {
437                 // Make sure the required field is there
438                 assert(isset($packageData[self::PACKAGE_DATA_RECIPIENT]));
439
440                 /*
441                  * We need to disover every recipient, just in case we have a
442                  * multi-recipient entry like 'upper' is. 'all' may be a not so good
443                  * target because it causes an overload on the network and may be
444                  * abused for attacking the network with large packages.
445                  */
446                 $discoveryInstance = PackageDiscoveryFactory::createPackageDiscoveryInstance();
447
448                 // Discover all recipients, this may throw an exception
449                 $discoveryInstance->discoverRecipients($packageData);
450
451                 // Now get an iterator
452                 $iteratorInstance = $discoveryInstance->getIterator();
453
454                 // Rewind back to the beginning
455                 $iteratorInstance->rewind();
456
457                 // ... and begin iteration
458                 while ($iteratorInstance->valid()) {
459                         // Get current entry
460                         $currentRecipient = $iteratorInstance->current();
461
462                         // Debug message
463                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Setting recipient to ' . $currentRecipient . ',previous=' . $packageData[self::PACKAGE_DATA_RECIPIENT]);
464
465                         // Set the recipient
466                         $packageData[self::PACKAGE_DATA_RECIPIENT] = $currentRecipient;
467
468                         // Push the declared package to the next stack.
469                         $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECLARED, $packageData);
470
471                         // Debug message
472                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Package declared for recipient ' . $currentRecipient);
473
474                         // Skip to next entry
475                         $iteratorInstance->next();
476                 } // END - while
477
478                 /*
479                  * The recipient list can be cleaned up here because the package which
480                  * shall be delivered has already been added for all entries from the
481                  * list.
482                  */
483                 $discoveryInstance->clearRecipients();
484         }
485
486         /**
487          * Delivers raw package data. In short, this will discover the raw socket
488          * resource through a discovery class (which will analyse the receipient of
489          * the package), register the socket with the connection (handler/helper?)
490          * instance and finally push the raw data on our outgoing queue.
491          *
492          * @param       $packageData    Raw package data in an array
493          * @return      void
494          */
495         private function deliverRawPackageData (array $packageData) {
496                 /*
497                  * This package may become big, depending on the shared object size or
498                  * delivered message size which shouldn't be so long (to save
499                  * bandwidth). Because of the nature of the used protocol (TCP) we need
500                  * to split it up into smaller pieces to fit it into a TCP frame.
501                  *
502                  * So first we need (again) a discovery class but now a protocol
503                  * discovery to choose the right socket resource. The discovery class
504                  * should take a look at the raw package data itself and then decide
505                  * which (configurable!) protocol should be used for that type of
506                  * package.
507                  */
508                 $discoveryInstance = SocketDiscoveryFactory::createSocketDiscoveryInstance();
509
510                 // Now discover the right protocol
511                 $socketResource = $discoveryInstance->discoverSocket($packageData, BaseConnectionHelper::CONNECTION_TYPE_OUTGOING);
512
513                 // Debug message
514                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Reached line ' . __LINE__ . ' after discoverSocket() has been called.');
515
516                 // Debug message
517                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: stateInstance=' . $helperInstance->getStateInstance());
518                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Reached line ' . __LINE__ . ' before isSocketRegistered() has been called.');
519
520                 // The socket needs to be put in a special registry that can handle such data
521                 $registryInstance = SocketRegistryFactory::createSocketRegistryInstance();
522
523                 // Get the connection helper from registry
524                 $helperInstance = Registry::getRegistry()->getInstance('connection');
525
526                 // And make sure it is valid
527                 assert($helperInstance instanceof ConnectionHelper);
528
529                 // Is it not there?
530                 if ((is_resource($socketResource)) && (!$registryInstance->isSocketRegistered($helperInstance, $socketResource))) {
531                         // Debug message
532                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Registering socket ' . $socketResource . ' ...');
533
534                         // Then register it
535                         $registryInstance->registerSocket($helperInstance, $socketResource, $packageData);
536                 } elseif (!$helperInstance->getStateInstance()->isPeerStateConnected()) {
537                         // Is not connected, then we cannot send
538                         self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Unexpected peer state ' . $helperInstance->getStateInstance()->__toString() . ' detected.');
539
540                         // Shutdown the socket
541                         $this->shutdownSocket($socketResource);
542                 }
543
544                 // Debug message
545                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Reached line ' . __LINE__ . ' after isSocketRegistered() has been called.');
546
547                 // Make sure the connection is up
548                 $helperInstance->getStateInstance()->validatePeerStateConnected();
549
550                 // Debug message
551                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Reached line ' . __LINE__ . ' after validatePeerStateConnected() has been called.');
552
553                 // Enqueue it again on the out-going queue, the connection is up and working at this point
554                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_OUTGOING, $packageData);
555
556                 // Debug message
557                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Reached line ' . __LINE__ . ' after pushNamed() has been called.');
558         }
559
560         /**
561          * Sends waiting packages
562          *
563          * @param       $packageData    Raw package data
564          * @return      void
565          */
566         private function sendOutgoingRawPackageData (array $packageData) {
567                 // Init sent bytes
568                 $sentBytes = 0;
569
570                 // Get the right connection instance
571                 $helperInstance = SocketRegistryFactory::createSocketRegistryInstance()->getHandlerInstanceFromPackageData($packageData);
572
573                 // Is this connection still alive?
574                 if ($helperInstance->isShuttedDown()) {
575                         // This connection is shutting down
576                         // @TODO We may want to do somthing more here?
577                         return;
578                 } // END - if
579
580                 // Sent out package data
581                 $helperInstance->sendRawPackageData($packageData);
582         }
583
584         /**
585          * Generates a signature for given raw package content and sender id
586          *
587          * @param       $content        Raw package data
588          * @param       $senderId       Sender id to generate a signature for
589          * @return      $signature      Signature as BASE64-encoded string
590          */
591         private function generatePackageSignature ($content, $senderId) {
592                 // Hash content and sender id together, use md5() as last algo
593                 $hash = md5($this->getCryptoInstance()->hashString($senderId . $content, $this->getPrivateKey(), FALSE));
594
595                 // Encrypt the content again with the hash as a key
596                 $encryptedContent = $this->getCryptoInstance()->encryptString($content, $hash);
597
598                 // Encode it with BASE64
599                 $signature = base64_encode($encryptedContent);
600
601                 // Return it
602                 return $signature;
603         }
604
605         /**
606          * Checks whether the signature of given package data is 'valid', here that
607          * means it is the same or not.
608          *
609          * @param       $decodedArray           An array with 'decoded' (explode() was mostly called) data
610          * @return      $isSignatureValid       Whether the signature is valid
611          * @todo        Unfinished area, signatures are currently NOT fully supported
612          */
613         private function isPackageSignatureValid (array $decodedArray) {
614                 // Generate the signature of comparing it
615                 $signature = $this->generatePackageSignature($decodedArray[self::INDEX_PACKAGE_CONTENT], $decodedArray[self::INDEX_PACKAGE_SENDER]);
616
617                 // Is it the same?
618                 //$isSignatureValid = 
619                 exit(__METHOD__.': signature='.$signature.chr(10).',decodedArray='.print_r($decodedArray, TRUE));
620         }
621
622         /**
623          * "Enqueues" raw content into this delivery class by reading the raw content
624          * from given helper's template instance and pushing it on the 'undeclared'
625          * stack.
626          *
627          * @param       $helperInstance         An instance of a Helper class
628          * @param       $protocol                       Name of used protocol (TCP/UDP)
629          * @return      void
630          */
631         public function enqueueRawDataFromTemplate (Helper $helperInstance, $protocolName) {
632                 // Get the raw content ...
633                 $content = $helperInstance->getTemplateInstance()->getRawTemplateData();
634                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('content(' . strlen($content) . ')=' . $content);
635
636                 // ... and compress it
637                 $content = $this->getCompressorInstance()->compressStream($content);
638
639                 // Add magic in front of it and hash behind it, including BASE64 encoding
640                 $packageContent = sprintf(self::PACKAGE_MASK,
641                         // 1.) Compressor's extension
642                         $this->getCompressorInstance()->getCompressorExtension(),
643                         // - separator
644                         self::PACKAGE_MASK_SEPARATOR,
645                         // 2.) Raw package content, encoded with BASE64
646                         base64_encode($content),
647                         // - separator
648                         self::PACKAGE_MASK_SEPARATOR,
649                         // 3.) Tags
650                         implode(self::PACKAGE_TAGS_SEPARATOR, $helperInstance->getPackageTags()),
651                         // - separator
652                         self::PACKAGE_MASK_SEPARATOR,
653                         // 4.) Checksum
654                         $this->getHashFromContent($content)
655                 );
656
657                 // Now prepare the temporary array and push it on the 'undeclared' stack
658                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_UNDECLARED, array(
659                         self::PACKAGE_DATA_SENDER    => $this->getSessionId(),
660                         self::PACKAGE_DATA_RECIPIENT => $helperInstance->getRecipientType(),
661                         self::PACKAGE_DATA_PROTOCOL  => $protocolName,
662                         self::PACKAGE_DATA_CONTENT   => $packageContent,
663                         self::PACKAGE_DATA_STATUS    => self::PACKAGE_STATUS_NEW,
664                         self::PACKAGE_DATA_SIGNATURE => $this->generatePackageSignature($packageContent, $this->getSessionId())
665                 ));
666         }
667
668         /**
669          * Checks whether a package has been enqueued for delivery.
670          *
671          * @return      $isEnqueued             Whether a package is enqueued
672          */
673         public function isPackageEnqueued () {
674                 // Check whether the stacker is not empty
675                 $isEnqueued = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_UNDECLARED)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_UNDECLARED)));
676
677                 // Return the result
678                 return $isEnqueued;
679         }
680
681         /**
682          * Checks whether a package has been declared
683          *
684          * @return      $isDeclared             Whether a package is declared
685          */
686         public function isPackageDeclared () {
687                 // Check whether the stacker is not empty
688                 $isDeclared = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_DECLARED)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECLARED)));
689
690                 // Return the result
691                 return $isDeclared;
692         }
693
694         /**
695          * Checks whether a package should be sent out
696          *
697          * @return      $isWaitingDelivery      Whether a package is waiting for delivery
698          */
699         public function isPackageWaitingForDelivery () {
700                 // Check whether the stacker is not empty
701                 $isWaitingDelivery = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_OUTGOING)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_OUTGOING)));
702
703                 // Return the result
704                 return $isWaitingDelivery;
705         }
706
707         /**
708          * Checks whether encoded (raw) data is pending
709          *
710          * @return      $isPending              Whether encoded data is pending
711          */
712         public function isEncodedDataPending () {
713                 // Check whether the stacker is not empty
714                 $isPending = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_OUTGOING_STREAM)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_OUTGOING_STREAM)));
715
716                 // Return the result
717                 return $isPending;
718         }
719
720         /**
721          * Delivers an enqueued package to the stated destination. If a non-session
722          * id is provided, recipient resolver is being asked (and instanced once).
723          * This allows that a single package is being delivered to multiple targets
724          * without enqueueing it for every target. If no target is provided or it
725          * can't be determined a NoTargetException is being thrown.
726          *
727          * @return      void
728          * @throws      NoTargetException       If no target can't be determined
729          */
730         public function declareEnqueuedPackage () {
731                 // Make sure this method isn't working if there is no package enqueued
732                 if (!$this->isPackageEnqueued()) {
733                         // This is not fatal but should be avoided
734                         self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: No raw package data waiting declaration, but ' . __METHOD__ . ' has been called!');
735                         return;
736                 } // END - if
737
738                 /*
739                  * Now there are for sure packages to deliver, so start with the first
740                  * one.
741                  */
742                 $packageData = $this->getStackerInstance()->popNamed(self::STACKER_NAME_UNDECLARED);
743
744                 // Declare the raw package data for delivery
745                 $this->declareRawPackageData($packageData);
746         }
747
748         /**
749          * Delivers the next declared package. Only one package per time will be sent
750          * because this may take time and slows down the whole delivery
751          * infrastructure.
752          *
753          * @return      void
754          */
755         public function processDeclaredPackage () {
756                 // Sanity check if we have packages declared
757                 if (!$this->isPackageDeclared()) {
758                         // This is not fatal but should be avoided
759                         self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: No package has been declared, but ' . __METHOD__ . ' has been called!');
760                         return;
761                 } // END - if
762
763                 // Get the package
764                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_DECLARED);
765
766                 // Assert on it
767                 assert(isset($packageData[self::PACKAGE_DATA_RECIPIENT]));
768
769                 // Try to deliver the package
770                 try {
771                         // And try to send it
772                         $this->deliverRawPackageData($packageData);
773
774                         // And remove it finally
775                         $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECLARED);
776                 } catch (InvalidStateException $e) {
777                         // The state is not excepected (shall be 'connected')
778                         self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Caught ' . $e->__toString() . ',message=' . $e->getMessage());
779
780                         // Mark the package with status failed
781                         $this->changePackageStatus($packageData, self::STACKER_NAME_DECLARED, self::PACKAGE_STATUS_FAILED);
782                 }
783         }
784
785         /**
786          * Sends waiting packages out for delivery
787          *
788          * @return      void
789          */
790         public function sendWaitingPackage () {
791                 // Sanity check if we have packages waiting for delivery
792                 if (!$this->isPackageWaitingForDelivery()) {
793                         // This is not fatal but should be avoided
794                         self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: No package is waiting for delivery, but ' . __METHOD__ . ' was called.');
795                         return;
796                 } // END - if
797
798                 // Get the package
799                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_OUTGOING);
800
801                 try {
802                         // Now try to send it
803                         $this->sendOutgoingRawPackageData($packageData);
804
805                         // And remove it finally
806                         $this->getStackerInstance()->popNamed(self::STACKER_NAME_OUTGOING);
807                 } catch (InvalidSocketException $e) {
808                         // Output exception message
809                         self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Package was not delivered: ' . $e->getMessage());
810
811                         // Mark package as failed
812                         $this->changePackageStatus($packageData, self::STACKER_NAME_OUTGOING, self::PACKAGE_STATUS_FAILED);
813                 }
814         }
815
816         /**
817          * Sends out encoded data to a socket
818          *
819          * @return      void
820          */
821         public function sendEncodedData () {
822                 // Make sure there is pending encoded data
823                 assert($this->isEncodedDataPending());
824
825                 // Pop current data from stack
826                 $encodedDataArray = $this->getStackerInstance()->popNamed(self::STACKER_NAME_OUTGOING_STREAM);
827
828                 // Init in this round sent bytes
829                 $sentBytes = 0;
830
831                 // Assert on socket
832                 assert(is_resource($encodedDataArray[self::RAW_SOCKET_INDEX]));
833
834                 // And deliver it
835                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __METHOD__ . ':' . __LINE__ . ']: Sending out ' . strlen($encodedDataArray[self::RAW_ENCODED_DATA_INDEX]) . ' bytes,rawBufferSize=' . $encodedDataArray[self::RAW_BUFFER_SIZE_INDEX] . ',diff=' . $encodedDataArray[self::RAW_DIFF_INDEX]);
836                 if ($encodedDataArray[self::RAW_DIFF_INDEX] >= 0) {
837                         // Send all out (encodedData is smaller than or equal buffer size)
838                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __METHOD__ . ':' . __LINE__ . ']: MD5=' . md5(substr($encodedDataArray[self::RAW_ENCODED_DATA_INDEX], 0, ($encodedDataArray[self::RAW_BUFFER_SIZE_INDEX] - $encodedDataArray[self::RAW_DIFF_INDEX]))));
839                         $sentBytes = @socket_write($encodedDataArray[self::RAW_SOCKET_INDEX], $encodedDataArray[self::RAW_ENCODED_DATA_INDEX], ($encodedDataArray[self::RAW_BUFFER_SIZE_INDEX] - $encodedDataArray[self::RAW_DIFF_INDEX]));
840                 } else {
841                         // Send buffer size out
842                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __METHOD__ . ':' . __LINE__ . ']: MD5=' . md5(substr($encodedDataArray[self::RAW_ENCODED_DATA_INDEX], 0, $encodedDataArray[self::RAW_BUFFER_SIZE_INDEX])));
843                         $sentBytes = @socket_write($encodedDataArray[self::RAW_SOCKET_INDEX], $encodedDataArray[self::RAW_ENCODED_DATA_INDEX], $encodedDataArray[self::RAW_BUFFER_SIZE_INDEX]);
844                 }
845
846                 // If there was an error, we don't continue here
847                 if ($sentBytes === FALSE) {
848                         // Handle the error with a faked recipientData array
849                         $this->handleSocketError(__METHOD__, __LINE__, $encodedDataArray[self::RAW_SOCKET_INDEX], array('0.0.0.0', '0'));
850
851                         // And throw it
852                         throw new InvalidSocketException(array($this, $encodedDataArray[self::RAW_SOCKET_INDEX], $socketError, $errorMessage), BaseListener::EXCEPTION_INVALID_SOCKET);
853                 } elseif (($sentBytes === 0) && (strlen($encodedDataArray[self::RAW_ENCODED_DATA_INDEX]) > 0)) {
854                         // Nothing sent means we are done
855                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __METHOD__ . ':' . __LINE__ . ']: All sent! (LINE=' . __LINE__ . ')');
856                         return;
857                 } else {
858                         // The difference between sent bytes and length of raw data should not go below zero
859                         assert((strlen($encodedDataArray[self::RAW_ENCODED_DATA_INDEX]) - $sentBytes) >= 0);
860
861                         // Add total sent bytes
862                         $encodedDataArray[self::RAW_SENT_BYTES_INDEX] += $sentBytes;
863
864                         // Cut out the last unsent bytes
865                         //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __METHOD__ . ':' . __LINE__ . ']: Sent out ' . $sentBytes . ' of ' . strlen($encodedDataArray[self::RAW_ENCODED_DATA_INDEX]) . ' bytes ...');
866                         $encodedDataArray[self::RAW_ENCODED_DATA_INDEX] = substr($encodedDataArray[self::RAW_ENCODED_DATA_INDEX], $sentBytes);
867
868                         // Calculate difference again
869                         $encodedDataArray[self::RAW_DIFF_INDEX] = $encodedDataArray[self::RAW_BUFFER_SIZE_INDEX] - strlen($encodedDataArray[self::RAW_ENCODED_DATA_INDEX]);
870
871                         // Can we abort?
872                         if (strlen($encodedDataArray[self::RAW_ENCODED_DATA_INDEX]) <= 0) {
873                                 // Abort here, all sent!
874                                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __METHOD__ . ':' . __LINE__ . ']: All sent! (LINE=' . __LINE__ . ')');
875                                 return;
876                         } // END - if
877                 }
878
879                 // Push array back in stack
880                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_OUTGOING_STREAM, $encodedDataArray);
881         }
882
883         ///////////////////////////////////////////////////////////////////////////
884         //                   Receiving packages / raw data
885         ///////////////////////////////////////////////////////////////////////////
886
887         /**
888          * Checks whether decoded raw data is pending
889          *
890          * @return      $isPending      Whether decoded raw data is pending
891          */
892         private function isRawDataPending () {
893                 // Just return whether the stack is not empty
894                 $isPending = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_INCOMING));
895
896                 // Return the status
897                 return $isPending;
898         }
899
900         /**
901          * Checks whether new raw package data has arrived at a socket
902          *
903          * @param       $poolInstance   An instance of a PoolableListener class
904          * @return      $hasArrived             Whether new raw package data has arrived for processing
905          */
906         public function isNewRawDataPending (PoolableListener $poolInstance) {
907                 // Visit the pool. This monitors the pool for incoming raw data.
908                 $poolInstance->accept($this->getVisitorInstance());
909
910                 // Check for new data arrival
911                 $hasArrived = $this->isRawDataPending();
912
913                 // Return the status
914                 return $hasArrived;
915         }
916
917         /**
918          * Handles the incoming decoded raw data. This method does not "convert" the
919          * decoded data back into a package array, it just "handles" it and pushs it
920          * on the next stack.
921          *
922          * @return      void
923          */
924         public function handleIncomingDecodedData () {
925                 /*
926                  * This method should only be called if decoded raw data is pending,
927                  * so check it again.
928                  */
929                 if (!$this->isRawDataPending()) {
930                         // This is not fatal but should be avoided
931                         self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: No raw (decoded?) data is pending, but ' . __METHOD__ . ' has been called!');
932                         return;
933                 } // END - if
934
935                 // Very noisy debug message:
936                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Stacker size is ' . $this->getStackerInstance()->getStackCount(self::STACKER_NAME_DECODED_INCOMING) . ' entries.');
937
938                 // "Pop" the next entry (the same array again) from the stack
939                 $decodedData = $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECODED_INCOMING);
940
941                 // Make sure both array elements are there
942                 assert(
943                         (is_array($decodedData)) &&
944                         (isset($decodedData[BaseRawDataHandler::PACKAGE_RAW_DATA])) &&
945                         (isset($decodedData[BaseRawDataHandler::PACKAGE_ERROR_CODE]))
946                 );
947
948                 /*
949                  * Also make sure the error code is SOCKET_ERROR_UNHANDLED because we
950                  * only want to handle unhandled packages here.
951                  */
952                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: errorCode=' . $decodedData[BaseRawDataHandler::PACKAGE_ERROR_CODE] . '(' . BaseRawDataHandler::SOCKET_ERROR_UNHANDLED . ')');
953                 assert($decodedData[BaseRawDataHandler::PACKAGE_ERROR_CODE] == BaseRawDataHandler::SOCKET_ERROR_UNHANDLED);
954
955                 // Remove the last chunk SEPARATOR (because there is no need for it)
956                 if (substr($decodedData[BaseRawDataHandler::PACKAGE_RAW_DATA], -1, 1) == PackageFragmenter::CHUNK_SEPARATOR) {
957                         // It is there and should be removed
958                         $decodedData[BaseRawDataHandler::PACKAGE_RAW_DATA] = substr($decodedData[BaseRawDataHandler::PACKAGE_RAW_DATA], 0, -1);
959                 } // END - if
960
961                 // This package is "handled" and can be pushed on the next stack
962                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Pushing ' . strlen($decodedData[BaseRawDataHandler::PACKAGE_RAW_DATA]) . ' bytes to stack ' . self::STACKER_NAME_DECODED_HANDLED . ' ...');
963                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_HANDLED, $decodedData);
964         }
965
966         /**
967          * Adds raw decoded data from the given handler instance to this receiver
968          *
969          * @param       $handlerInstance        An instance of a Networkable class
970          * @return      void
971          */
972         public function addRawDataToIncomingStack (Networkable $handlerInstance) {
973                 /*
974                  * Get the decoded data from the handler, this is an array with
975                  * 'raw_data' and 'error_code' as elements.
976                  */
977                 $decodedData = $handlerInstance->getNextRawData();
978
979                 // Very noisy debug message:
980                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: decodedData[' . gettype($decodedData) . ']=' . print_r($decodedData, TRUE));
981
982                 // And push it on our stack
983                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_INCOMING, $decodedData);
984         }
985
986         /**
987          * Checks whether incoming decoded data is handled.
988          *
989          * @return      $isHandled      Whether incoming decoded data is handled
990          */
991         public function isIncomingRawDataHandled () {
992                 // Determine if the stack is not empty
993                 $isHandled = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_HANDLED));
994
995                 // Return it
996                 return $isHandled;
997         }
998
999         /**
1000          * Checks whether the assembler has pending data left
1001          *
1002          * @return      $isHandled      Whether the assembler has pending data left
1003          */
1004         public function ifAssemblerHasPendingDataLeft () {
1005                 // Determine if the stack is not empty
1006                 $isHandled = (!$this->getAssemblerInstance()->isPendingDataEmpty());
1007
1008                 // Return it
1009                 return $isHandled;
1010         }
1011
1012         /**
1013          * Checks whether the assembler has multiple packages pending
1014          *
1015          * @return      $isPending      Whether the assembler has multiple packages pending
1016          */
1017         public function ifMultipleMessagesPending () {
1018                 // Determine if the stack is not empty
1019                 $isPending = ($this->getAssemblerInstance()->ifMultipleMessagesPending());
1020
1021                 // Return it
1022                 return $isPending;
1023         }
1024
1025         /**
1026          * Handles the attached assemler's pending data queue to be finally
1027          * assembled to the raw package data back.
1028          *
1029          * @return      void
1030          */
1031         public function handleAssemblerPendingData () {
1032                 // Handle it
1033                 $this->getAssemblerInstance()->handlePendingData();
1034         }
1035
1036         /**
1037          * Handles multiple messages.
1038          *
1039          * @return      void
1040          */
1041         public function handleMultipleMessages () {
1042                 // Handle it
1043                 $this->getAssemblerInstance()->handleMultipleMessages();
1044         }
1045
1046         /**
1047          * Assembles incoming decoded data so it will become an abstract network
1048          * package again. The assembler does later do it's job by an other task,
1049          * not this one to keep best speed possible.
1050          *
1051          * @return      void
1052          */
1053         public function assembleDecodedDataToPackage () {
1054                 // Make sure the raw decoded package data is handled
1055                 assert($this->isIncomingRawDataHandled());
1056
1057                 // Get current package content (an array with two elements; see handleIncomingDecodedData() for details)
1058                 $packageContent = $this->getStackerInstance()->getNamed(self::STACKER_NAME_DECODED_HANDLED);
1059
1060                 // Assert on some elements
1061                 assert(
1062                         (is_array($packageContent)) &&
1063                         (isset($packageContent[BaseRawDataHandler::PACKAGE_RAW_DATA])) &&
1064                         (isset($packageContent[BaseRawDataHandler::PACKAGE_ERROR_CODE]))
1065                 );
1066
1067                 // Start assembling the raw package data array by chunking it
1068                 $this->getAssemblerInstance()->chunkPackageContent($packageContent);
1069
1070                 // Remove the package from 'handled_decoded' stack ...
1071                 $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECODED_HANDLED);
1072
1073                 // ... and push it on the 'chunked' stacker
1074                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: Pushing ' . strlen($packageContent[BaseRawDataHandler::PACKAGE_RAW_DATA]) . ' bytes on stack ' . self::STACKER_NAME_DECODED_CHUNKED . ',packageContent=' . print_r($packageContent, TRUE));
1075                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_CHUNKED, $packageContent);
1076         }
1077
1078         /**
1079          * Accepts the visitor to process the visit "request"
1080          *
1081          * @param       $visitorInstance        An instance of a Visitor class
1082          * @return      void
1083          */
1084         public function accept (Visitor $visitorInstance) {
1085                 // Debug message
1086                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: ' . $visitorInstance->__toString() . ' has visited - START');
1087
1088                 // Visit the package
1089                 $visitorInstance->visitNetworkPackage($this);
1090
1091                 // Then visit the assembler to handle multiple packages
1092                 $this->getAssemblerInstance()->accept($visitorInstance);
1093
1094                 // Debug message
1095                 /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: ' . $visitorInstance->__toString() . ' has visited - FINISHED');
1096         }
1097
1098         /**
1099          * Clears all stacks
1100          *
1101          * @return      void
1102          */
1103         public function clearAllStacks () {
1104                 // Call the init method to force re-initialization
1105                 $this->initStacks(TRUE);
1106
1107                 // Debug message
1108                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: All stacker have been re-initialized.');
1109         }
1110
1111         /**
1112          * Removes the first failed outoging package from the stack to continue
1113          * with next one (it will never work until the issue is fixed by you).
1114          *
1115          * @return      void
1116          * @throws      UnexpectedPackageStatusException        If the package status is not 'failed'
1117          * @todo        This may be enchanced for outgoing packages?
1118          */
1119         public function removeFirstFailedPackage () {
1120                 // Get the package again
1121                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_DECLARED);
1122
1123                 // Is the package status 'failed'?
1124                 if ($packageData[self::PACKAGE_DATA_STATUS] != self::PACKAGE_STATUS_FAILED) {
1125                         // Not failed!
1126                         throw new UnexpectedPackageStatusException(array($this, $packageData, self::PACKAGE_STATUS_FAILED), BaseListener::EXCEPTION_UNEXPECTED_PACKAGE_STATUS);
1127                 } // END - if
1128
1129                 // Remove this entry
1130                 $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECLARED);
1131         }
1132
1133         /**
1134          * "Decode" the package content into the same array when it was sent.
1135          *
1136          * @param       $rawPackageContent      The raw package content to be "decoded"
1137          * @return      $decodedData            An array with 'sender', 'recipient', 'content' and 'status' elements
1138          */
1139         public function decodeRawContent ($rawPackageContent) {
1140                 // Use the separator '#' to "decode" it
1141                 $decodedArray = explode(self::PACKAGE_DATA_SEPARATOR, $rawPackageContent);
1142
1143                 // Assert on count (should be always 3)
1144                 assert(count($decodedArray) == self::DECODED_DATA_ARRAY_SIZE);
1145
1146                 // Generate the signature of comparing it
1147                 /*
1148                  * @todo Unsupported feature of "signed" messages commented out
1149                 if (!$this->isPackageSignatureValid($decodedArray)) {
1150                         // Is not valid, so throw an exception here
1151                         exit(__METHOD__ . ':INVALID SIG! UNDER CONSTRUCTION!' . chr(10));
1152                 } // END - if
1153                 */
1154
1155                 /*
1156                  * Create 'decodedData' array with all assoziative array elements,
1157                  * except signature.
1158                  */
1159                 $decodedData = array(
1160                         self::PACKAGE_DATA_SENDER    => $decodedArray[self::INDEX_PACKAGE_SENDER],
1161                         self::PACKAGE_DATA_RECIPIENT => $decodedArray[self::INDEX_PACKAGE_RECIPIENT],
1162                         self::PACKAGE_DATA_CONTENT   => $decodedArray[self::INDEX_PACKAGE_CONTENT],
1163                         self::PACKAGE_DATA_STATUS    => self::PACKAGE_STATUS_DECODED
1164                 );
1165
1166                 // And return it
1167                 return $decodedData;
1168         }
1169
1170         /**
1171          * Handles decoded data for this node by "decoding" the 'content' part of
1172          * it. Again this method uses explode() for the "decoding" process.
1173          *
1174          * @param       $decodedData    An array with decoded raw package data
1175          * @return      void
1176          * @throws      InvalidDataChecksumException    If the checksum doesn't match
1177          */
1178         public function handleRawData (array $decodedData) {
1179                 /*
1180                  * "Decode" the package's content by a simple explode() call, for
1181                  * details of the array elements, see comments for constant
1182                  * PACKAGE_MASK.
1183                  */
1184                 $decodedContent = explode(self::PACKAGE_MASK_SEPARATOR, $decodedData[self::PACKAGE_DATA_CONTENT]);
1185
1186                 // Assert on array count for a very basic validation
1187                 assert(count($decodedContent) == self::PACKAGE_CONTENT_ARRAY_SIZE);
1188
1189                 /*
1190                  * Convert the indexed array into an associative array. This is much
1191                  * better to remember than plain numbers, isn't it?
1192                  */
1193                 $decodedContent = array(
1194                         // Compressor's extension used to compress the data
1195                         self::PACKAGE_CONTENT_EXTENSION => $decodedContent[self::INDEX_COMPRESSOR_EXTENSION],
1196                         // Package data (aka "message") in BASE64-decoded form but still compressed
1197                         self::PACKAGE_CONTENT_MESSAGE   => base64_decode($decodedContent[self::INDEX_PACKAGE_DATA]),
1198                         // Tags as an indexed array for "tagging" the message
1199                         self::PACKAGE_CONTENT_TAGS      => explode(self::PACKAGE_TAGS_SEPARATOR, $decodedContent[self::INDEX_TAGS]),
1200                         // Checksum of the _decoded_ data
1201                         self::PACKAGE_CONTENT_CHECKSUM  => $decodedContent[self::INDEX_CHECKSUM]
1202                 );
1203
1204                 // Is the checksum valid?
1205                 if (!$this->isChecksumValid($decodedContent, $decodedData)) {
1206                         // Is not the same, so throw an exception here
1207                         throw new InvalidDataChecksumException(array($this, $decodedContent, $decodedData), BaseListener::EXCEPTION_INVALID_DATA_CHECKSUM);
1208                 } // END - if
1209
1210                 /*
1211                  * The checksum is the same, then it can be decompressed safely. The
1212                  * original message is at this point fully decoded.
1213                  */
1214                 $decodedContent[self::PACKAGE_CONTENT_MESSAGE] = $this->getCompressorInstance()->decompressStream($decodedContent[self::PACKAGE_CONTENT_MESSAGE]);
1215
1216                 // And push it on the next stack
1217                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_NEW_MESSAGE, $decodedContent);
1218         }
1219
1220         /**
1221          * Checks whether a new message has arrived
1222          *
1223          * @return      $hasArrived             Whether a new message has arrived for processing
1224          */
1225         public function isNewMessageArrived () {
1226                 // Determine if the stack is not empty
1227                 $hasArrived = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_NEW_MESSAGE));
1228
1229                 // Return it
1230                 return $hasArrived;
1231         }
1232
1233         /**
1234          * Handles newly arrived messages
1235          *
1236          * @return      void
1237          * @todo        Implement verification of all sent tags here?
1238          */
1239         public function handleNewlyArrivedMessage () {
1240                 // Get it from the stacker, it is the full array with the decoded message
1241                 $decodedContent = $this->getStackerInstance()->popNamed(self::STACKER_NAME_NEW_MESSAGE);
1242
1243                 // Now get a filter chain back from factory with given tags array
1244                 $chainInstance = PackageFilterChainFactory::createChainByTagsArray($decodedContent[self::PACKAGE_CONTENT_TAGS]);
1245
1246                 /*
1247                  * Process the message through all filters, note that all other
1248                  * elements from $decodedContent are no longer needed.
1249                  */
1250                 $chainInstance->processMessage($decodedContent[self::PACKAGE_CONTENT_MESSAGE], $this);
1251         }
1252
1253         /**
1254          * Checks whether a processed message is pending for "interpretation"
1255          *
1256          * @return      $isPending      Whether a processed message is pending
1257          */
1258         public function isProcessedMessagePending () {
1259                 // Check it
1260                 $isPending = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_PROCESSED_MESSAGE));
1261
1262                 // Return it
1263                 return $isPending;
1264         }
1265
1266         /**
1267          * Handle processed messages by "interpreting" the 'message_type' element
1268          *
1269          * @return      void
1270          */
1271         public function handleProcessedMessage () {
1272                 // Get it from the stacker, it is the full array with the processed message
1273                 $messageArray = $this->getStackerInstance()->popNamed(self::STACKER_NAME_PROCESSED_MESSAGE);
1274
1275                 // Add type for later easier handling
1276                 $messageArray[self::MESSAGE_ARRAY_DATA][self::MESSAGE_ARRAY_TYPE] = $messageArray[self::MESSAGE_ARRAY_TYPE];
1277
1278                 // Debug message
1279                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __METHOD__ . ':' . __LINE__ . ']: messageArray=' . print_r($messageArray, TRUE));
1280
1281                 // Create a handler instance from given message type
1282                 $handlerInstance = MessageTypeHandlerFactory::createMessageTypeHandlerInstance($messageArray[self::MESSAGE_ARRAY_TYPE]);
1283
1284                 // Handle message data
1285                 $handlerInstance->handleMessageData($messageArray[self::MESSAGE_ARRAY_DATA], $this);
1286         }
1287 }
1288
1289 // [EOF]
1290 ?>