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