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