]> git.mxchange.org Git - hub.git/blob - application/hub/main/package/class_NetworkPackage.php
Refactured handling of socket errors, old code is commeted out and will be removed...
[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@ship-simu.org>
19  * @version             0.0.0
20  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
21  * @license             GNU GPL 3.0 or any newer version
22  * @link                http://www.ship-simu.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 BaseFrameworkSystem 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';
48
49         /**
50          * Seperator for the above mask
51          */
52         const PACKAGE_MASK_SEPERATOR = ':';
53
54         /**
55          * Seperator for checksum
56          */
57         const PACKAGE_CHECKSUM_SEPERATOR = ':';
58
59         /**
60          * Array indexes for above mask, start with zero
61          */
62         const INDEX_COMPRESSOR_EXTENSION = 0;
63         const INDEX_PACKAGE_DATA         = 1;
64         const INDEX_TAGS                 = 2;
65         const INDEX_CHECKSUM             = 3;
66
67         /**
68          * Array indexes for raw package array
69          */
70         const INDEX_PACKAGE_SENDER    = 0;
71         const INDEX_PACKAGE_RECIPIENT = 1;
72         const INDEX_PACKAGE_CONTENT   = 2;
73
74         /**
75          * Named array elements for package data
76          */
77         const PACKAGE_DATA_SENDER    = 'sender';
78         const PACKAGE_DATA_RECIPIENT = 'recipient';
79         const PACKAGE_DATA_CONTENT   = 'content';
80
81         /**
82          * Tags seperator
83          */
84         const PACKAGE_TAGS_SEPERATOR = ';';
85
86         /**
87          * Raw package data seperator
88          */
89         const PACKAGE_DATA_SEPERATOR = '#';
90
91         /**
92          * Stacker name for "undeclared" packages
93          */
94         const STACKER_NAME_UNDECLARED = 'package_undeclared';
95
96         /**
97          * Stacker name for "declared" packages (which are ready to send out)
98          */
99         const STACKER_NAME_DECLARED = 'package_declared';
100
101         /**
102          * Stacker name for "out-going" packages
103          */
104         const STACKER_NAME_OUTGOING = 'package_outgoing';
105
106         /**
107          * Stacker name for "incoming" decoded raw data
108          */
109         const STACKER_NAME_DECODED_INCOMING = 'package_decoded_data';
110
111         /**
112          * Stacker name for handled decoded raw data
113          */
114         const STACKER_NAME_DECODED_HANDLED = 'package_handled_decoded';
115
116         /**
117          * Stacker name for "back-buffered" packages
118          */
119         const STACKER_NAME_BACK_BUFFER = 'package_backbuffer';
120
121         /**
122          * Network target (alias): 'upper hubs'
123          */
124         const NETWORK_TARGET_UPPER_HUBS = 'upper';
125
126         /**
127          * Network target (alias): 'self'
128          */
129         const NETWORK_TARGET_SELF = 'self';
130
131         /**
132          * TCP package size in bytes
133          */
134         const TCP_PACKAGE_SIZE = 512;
135
136         /**
137          * Protected constructor
138          *
139          * @return      void
140          */
141         protected function __construct () {
142                 // Call parent constructor
143                 parent::__construct(__CLASS__);
144         }
145
146         /**
147          * Creates an instance of this class
148          *
149          * @param       $compressorInstance             A Compressor instance for compressing the content
150          * @return      $packageInstance                An instance of a Deliverable class
151          */
152         public static final function createNetworkPackage (Compressor $compressorInstance) {
153                 // Get new instance
154                 $packageInstance = new NetworkPackage();
155
156                 // Now set the compressor instance
157                 $packageInstance->setCompressorInstance($compressorInstance);
158
159                 /*
160                  * We need to initialize a stack here for our packages even for those
161                  * which have no recipient address and stamp... ;-) This stacker will
162                  * also be used for incoming raw data to handle it.
163                  */
164                 $stackerInstance = ObjectFactory::createObjectByConfiguredName('network_package_stacker_class');
165
166                 // At last, set it in this class
167                 $packageInstance->setStackerInstance($stackerInstance);
168
169                 // Init all stacker
170                 $packageInstance->initStackers();
171
172                 // Get a visitor instance for speeding up things
173                 $visitorInstance = ObjectFactory::createObjectByConfiguredName('node_raw_data_monitor_visitor_class', array($packageInstance));
174
175                 // Set it in this package
176                 $packageInstance->setVisitorInstance($visitorInstance);
177
178                 // Return the prepared instance
179                 return $packageInstance;
180         }
181
182         /**
183          * Initialize all stackers
184          *
185          * @return      void
186          */
187         protected function initStackers () {
188                 // Initialize all
189                 foreach (
190                         array(
191                                 self::STACKER_NAME_UNDECLARED,
192                                 self::STACKER_NAME_DECLARED,
193                                 self::STACKER_NAME_OUTGOING,
194                                 self::STACKER_NAME_DECODED_INCOMING,
195                                 self::STACKER_NAME_DECODED_HANDLED,
196                                 self::STACKER_NAME_BACK_BUFFER
197                         ) as $stackerName) {
198                                 // Init this stacker
199                                 $this->getStackerInstance()->initStacker($stackerName);
200                 } // END - foreach
201         }
202
203         /**
204          * "Getter" for hash from given content and helper instance
205          *
206          * @param       $content                        Raw package content
207          * @param       $helperInstance         An instance of a HelpableHub class
208          * @param       $nodeInstance           An instance of a NodeHelper class
209          * @return      $hash                           Hash for given package content
210          * @todo        $helperInstance is unused
211          */
212         private function getHashFromContent ($content, HelpableHub $helperInstance, NodeHelper $nodeInstance) {
213                 // Create the hash
214                 // @TODO crc32() is not very strong, but it needs to be fast
215                 $hash = crc32(
216                         $content .
217                         self::PACKAGE_CHECKSUM_SEPERATOR .
218                         $nodeInstance->getSessionId() .
219                         self::PACKAGE_CHECKSUM_SEPERATOR .
220                         $this->getCompressorInstance()->getCompressorExtension()
221                 );
222
223                 // And return it
224                 return $hash;
225         }
226
227         ///////////////////////////////////////////////////////////////////////////
228         //                   Delivering packages / raw data
229         ///////////////////////////////////////////////////////////////////////////
230
231         /**
232          * Delivers the given raw package data.
233          *
234          * @param       $packageData    Raw package data in an array
235          * @return      void
236          */
237         private function declareRawPackageData (array $packageData) {
238                 /*
239                  * We need to disover every recipient, just in case we have a
240                  * multi-recipient entry like 'upper' is. 'all' may be a not so good
241                  * target because it causes an overload on the network and may be
242                  * abused for attacking the network with large packages.
243                  */
244                 $discoveryInstance = PackageDiscoveryFactory::createPackageDiscoveryInstance();
245
246                 // Discover all recipients, this may throw an exception
247                 $discoveryInstance->discoverRecipients($packageData);
248
249                 // Now get an iterator
250                 $iteratorInstance = $discoveryInstance->getIterator();
251
252                 // ... and begin iteration
253                 while ($iteratorInstance->valid()) {
254                         // Get current entry
255                         $currentRecipient = $iteratorInstance->current();
256
257                         // Debug message
258                         $this->debugOutput('PACKAGE: Package declared for recipient ' . $currentRecipient);
259
260                         // Set the recipient
261                         $packageData[self::PACKAGE_DATA_RECIPIENT] = $currentRecipient;
262
263                         // And enqueue it to the writer class
264                         $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECLARED, $packageData);
265
266                         // Skip to next entry
267                         $iteratorInstance->next();
268                 } // END - while
269
270                 /*
271                  * The recipient list can be cleaned up here because the package which
272                  * shall be delivered has already been added for all entries from the
273                  * list.
274                  */
275                 $discoveryInstance->clearRecipients();
276         }
277
278         /**
279          * Delivers raw package data. In short, this will discover the raw socket
280          * resource through a discovery class (which will analyse the receipient of
281          * the package), register the socket with the connection (handler/helper?)
282          * instance and finally push the raw data on our outgoing queue.
283          *
284          * @param       $packageData    Raw package data in an array
285          * @return      void
286          */
287         private function deliverRawPackageData (array $packageData) {
288                 /*
289                  * This package may become big, depending on the shared object size or
290                  * delivered message size which shouldn't be so long (to save
291                  * bandwidth). Because of the nature of the used protocol (TCP) we need
292                  * to split it up into smaller pieces to fit it into a TCP frame.
293                  *
294                  * So first we need (again) a discovery class but now a protocol
295                  * discovery to choose the right socket resource. The discovery class
296                  * should take a look at the raw package data itself and then decide
297                  * which (configurable!) protocol should be used for that type of
298                  * package.
299                  */
300                 $discoveryInstance = SocketDiscoveryFactory::createSocketDiscoveryInstance();
301
302                 // Now discover the right protocol
303                 $socketResource = $discoveryInstance->discoverSocket($packageData);
304
305                 // Debug message
306                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' after discoverSocket() has been called.');
307
308                 // We have to put this socket in our registry, so get an instance
309                 $registryInstance = SocketRegistry::createSocketRegistry();
310
311                 // Get the listener from registry
312                 $helperInstance = Registry::getRegistry()->getInstance('connection');
313
314                 // Debug message
315                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' before isSocketRegistered() has been called.');
316
317                 // Is it not there?
318                 if ((is_resource($socketResource)) && (!$registryInstance->isSocketRegistered($helperInstance, $socketResource))) {
319                         // Then register it
320                         $registryInstance->registerSocket($helperInstance, $socketResource, $packageData);
321                 } // END - if
322
323                 // Debug message
324                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' after isSocketRegistered() has been called.');
325
326                 // Make sure the connection is up
327                 $helperInstance->getStateInstance()->validatePeerStateConnected();
328
329                 // Debug message
330                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' after validatePeerStateConnected() has been called.');
331
332                 // We enqueue it again, but now in the out-going queue
333                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_OUTGOING, $packageData);
334         }
335
336         /**
337          * Sends waiting packages
338          *
339          * @param       $packageData    Raw package data
340          * @return      void
341          */
342         private function sendOutgoingRawPackageData (array $packageData) {
343                 // Init sent bytes
344                 $sentBytes = 0;
345
346                 // Get the right connection instance
347                 $helperInstance = SocketRegistry::createSocketRegistry()->getHandlerInstanceFromPackageData($packageData);
348
349                 // Is this connection still alive?
350                 if ($helperInstance->isShuttedDown()) {
351                         // This connection is shutting down
352                         // @TODO We may want to do somthing more here?
353                         return;
354                 } // END - if
355
356                 // Sent out package data
357                 $sentBytes = $helperInstance->sendRawPackageData($packageData);
358
359                 // Remember unsent raw bytes in back-buffer, if any
360                 $this->storeUnsentBytesInBackBuffer($packageData, $sentBytes);
361         }
362
363         /**
364          * "Enqueues" raw content into this delivery class by reading the raw content
365          * from given template instance and pushing it on the 'undeclared' stack.
366          *
367          * @param       $helperInstance         An instance of a HelpableHub class
368          * @param       $nodeInstance           An instance of a NodeHelper class
369          * @return      void
370          */
371         public function enqueueRawDataFromTemplate (HelpableHub $helperInstance, NodeHelper $nodeInstance) {
372                 // Get the raw content ...
373                 $content = $helperInstance->getTemplateInstance()->getRawTemplateData();
374
375                 // ... and compress it
376                 $content = $this->getCompressorInstance()->compressStream($content);
377
378                 // Add magic in front of it and hash behind it, including BASE64 encoding
379                 $content = sprintf(self::PACKAGE_MASK,
380                         // 1.) Compressor's extension
381                         $this->getCompressorInstance()->getCompressorExtension(),
382                         // 2.) Raw package content, encoded with BASE64
383                         base64_encode($content),
384                         // 3.) Tags
385                         implode(self::PACKAGE_TAGS_SEPERATOR, $helperInstance->getPackageTags()),
386                         // 4.) Checksum
387                         $this->getHashFromContent($content, $helperInstance, $nodeInstance)
388                 );
389
390                 // Now prepare the temporary array and push it on the 'undeclared' stack
391                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_UNDECLARED, array(
392                         self::PACKAGE_DATA_SENDER    => $nodeInstance->getSessionId(),
393                         self::PACKAGE_DATA_RECIPIENT => $helperInstance->getRecipientType(),
394                         self::PACKAGE_DATA_CONTENT   => $content,
395                 ));
396         }
397
398         /**
399          * Checks wether a package has been enqueued for delivery.
400          *
401          * @return      $isEnqueued             Wether a package is enqueued
402          */
403         public function isPackageEnqueued () {
404                 // Check wether the stacker is not empty
405                 $isEnqueued = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_UNDECLARED)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_UNDECLARED)));
406
407                 // Return the result
408                 return $isEnqueued;
409         }
410
411         /**
412          * Checks wether a package has been declared
413          *
414          * @return      $isDeclared             Wether a package is declared
415          */
416         public function isPackageDeclared () {
417                 // Check wether the stacker is not empty
418                 $isDeclared = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_DECLARED)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECLARED)));
419
420                 // Return the result
421                 return $isDeclared;
422         }
423
424         /**
425          * Checks wether a package should be sent out
426          *
427          * @return      $isWaitingDelivery      Wether a package is waiting for delivery
428          */
429         public function isPackageWaitingForDelivery () {
430                 // Check wether the stacker is not empty
431                 $isWaitingDelivery = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_OUTGOING)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_OUTGOING)));
432
433                 // Return the result
434                 return $isWaitingDelivery;
435         }
436
437         /**
438          * Delivers an enqueued package to the stated destination. If a non-session
439          * id is provided, recipient resolver is being asked (and instanced once).
440          * This allows that a single package is being delivered to multiple targets
441          * without enqueueing it for every target. If no target is provided or it
442          * can't be determined a NoTargetException is being thrown.
443          *
444          * @return      void
445          * @throws      NoTargetException       If no target can't be determined
446          */
447         public function declareEnqueuedPackage () {
448                 // Make sure this method isn't working if there is no package enqueued
449                 if (!$this->isPackageEnqueued()) {
450                         // This is not fatal but should be avoided
451                         // @TODO Add some logging here
452                         return;
453                 } // END - if
454
455                 // Now we know for sure there are packages to deliver, we can start
456                 // with the first one.
457                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_UNDECLARED);
458
459                 // Declare the raw package data for delivery
460                 $this->declareRawPackageData($packageData);
461
462                 // And remove it finally
463                 $this->getStackerInstance()->popNamed(self::STACKER_NAME_UNDECLARED);
464         }
465
466         /**
467          * Delivers the next declared package. Only one package per time will be sent
468          * because this may take time and slows down the whole delivery
469          * infrastructure.
470          *
471          * @return      void
472          */
473         public function deliverDeclaredPackage () {
474                 // Sanity check if we have packages declared
475                 if (!$this->isPackageDeclared()) {
476                         // This is not fatal but should be avoided
477                         // @TODO Add some logging here
478                         return;
479                 } // END - if
480
481                 // Get the package again
482                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_DECLARED);
483
484                 try {
485                         // And try to send it
486                         $this->deliverRawPackageData($packageData);
487
488                         // And remove it finally
489                         $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECLARED);
490                 } catch (InvalidStateException $e) {
491                         // The state is not excepected (shall be 'connected')
492                         $this->debugOutput('PACKAGE: Caught exception ' . $e->__toString() . ' with message=' . $e->getMessage());
493                 }
494         }
495
496         /**
497          * Sends waiting packages out for delivery
498          *
499          * @return      void
500          */
501         public function sendWaitingPackage () {
502                 // Send any waiting bytes in the back-buffer before sending a new package
503                 $this->sendBackBufferBytes();
504
505                 // Sanity check if we have packages waiting for delivery
506                 if (!$this->isPackageWaitingForDelivery()) {
507                         // This is not fatal but should be avoided
508                         $this->debugOutput('PACKAGE: No package is waiting for delivery, but ' . __METHOD__ . ' was called.');
509                         return;
510                 } // END - if
511
512                 // Get the package again
513                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_OUTGOING);
514
515                 try {
516                         // Now try to send it
517                         $this->sendOutgoingRawPackageData($packageData);
518
519                         // And remove it finally
520                         $this->getStackerInstance()->popNamed(self::STACKER_NAME_OUTGOING);
521                 } catch (InvalidSocketException $e) {
522                         // Output exception message
523                         $this->debugOutput('PACKAGE: Package was not delivered: ' . $e->getMessage());
524                 }
525         }
526
527         ///////////////////////////////////////////////////////////////////////////
528         //                   Receiving packages / raw data
529         ///////////////////////////////////////////////////////////////////////////
530
531         /**
532          * Checks wether decoded raw data is pending
533          *
534          * @return      $isPending      Wether decoded raw data is pending
535          */
536         private function isDecodedDataPending () {
537                 // Just return wether the stack is not empty
538                 $isPending = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_INCOMING));
539
540                 // Return the status
541                 return $isPending;
542         }
543
544         /**
545          * Checks wether new raw package data has arrived at a socket
546          *
547          * @param       $poolInstance   An instance of a PoolableListener class
548          * @return      $hasArrived             Wether new raw package data has arrived for processing
549          */
550         public function isNewRawDataPending (PoolableListener $poolInstance) {
551                 // Visit the pool. This monitors the pool for incoming raw data.
552                 $poolInstance->accept($this->getVisitorInstance());
553
554                 // Check for new data arrival
555                 $hasArrived = $this->isDecodedDataPending();
556
557                 // Return the status
558                 return $hasArrived;
559         }
560
561         /**
562          * Handles the incoming decoded raw data. This method does not "convert" the
563          * decoded data back into a package array, it just "handles" it and pushs it
564          * on the next stack.
565          *
566          * @return      void
567          */
568         public function handleIncomingDecodedData () {
569                 /*
570                  * This method should only be called if decoded raw data is pending,
571                  * so check it again.
572                  */
573                 if (!$this->isDecodedDataPending()) {
574                         // This is not fatal but should be avoided
575                         // @TODO Add some logging here
576                         return;
577                 } // END - if
578
579                 // Very noisy debug message:
580                 /* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: Stacker size is ' . $this->getStackerInstance()->getStackCount(self::STACKER_NAME_DECODED_INCOMING) . ' entries.');
581
582                 // "Pop" the next entry (the same array again) from the stack
583                 $decodedData = $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECODED_INCOMING);
584
585                 // Make sure both array elements are there
586                 assert((is_array($decodedData)) && (isset($decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA])) && (isset($decodedData[BaseRawDataHandler::PACKAGE_ERROR_CODE])));
587
588                 /*
589                  * Also make sure the error code is SOCKET_ERROR_UNHANDLED because we
590                  * only want to handle unhandled packages here.
591                  */
592                 assert($decodedData[BaseRawDataHandler::PACKAGE_ERROR_CODE] == BaseRawDataHandler::SOCKET_ERROR_UNHANDLED);
593
594                 // Remove the last chunk seperator (because it is being added and we don't need it)
595                 if (substr($decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA], -1, 1) == PackageFragmenter::CHUNK_SEPERATOR) {
596                         // It is there and should be removed
597                         $decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA] = substr($decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA], 0, -1);
598                 } // END - if
599
600                 // This package is "handled" and can be pushed on the next stack
601                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_HANDLED, $decodedData);
602         }
603
604         /**
605          * Adds raw decoded data from the given handler instance to this receiver
606          *
607          * @param       $handlerInstance        An instance of a Networkable class
608          * @return      void
609          */
610         public function addDecodedDataToIncomingStack (Networkable $handlerInstance) {
611                 /*
612                  * Get the decoded data from the handler, this is an array with
613                  * 'decoded_data' and 'error_code' as elements.
614                  */
615                 $decodedData = $handlerInstance->getNextDecodedData();
616
617                 // Very noisy debug message:
618                 //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: decodedData[' . gettype($decodedData) . ']=' . print_r($decodedData, true));
619
620                 // And push it on our stack
621                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_INCOMING, $decodedData);
622         }
623
624         /**
625          * Checks wether incoming decoded data is handled.
626          *
627          * @return      $isHandled      Wether incoming decoded data is handled
628          */
629         public function isIncomingDecodedDataHandled () {
630                 // Determine if the stack is not empty
631                 $isHandled = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_HANDLED));
632
633                 // Return it
634                 return $isHandled;
635         }
636
637         /**
638          * Assembles incoming decoded data so it will become an abstract network
639          * package again.
640          *
641          * @return      void
642          */
643         public function assembleDecodedDataToPackage () {
644                 $this->getStackerInstance()->debugInstance();
645                 $this->partialStub('Please implement this method.');
646         }
647
648         /**
649          * Checks wether a new package has arrived
650          *
651          * @return      $hasArrived             Wether a new package has arrived for processing
652          */
653         public function isNewPackageArrived () {
654                 // @TODO Add some content here
655         }
656
657         /**
658          * Accepts the visitor to process the visit "request"
659          *
660          * @param       $visitorInstance        An instance of a Visitor class
661          * @return      void
662          */
663         public function accept (Visitor $visitorInstance) {
664                 // Debug message
665                 //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: ' . $visitorInstance->__toString() . ' has visited - START');
666
667                 // Visit the package
668                 $visitorInstance->visitNetworkPackage($this);
669
670                 // Debug message
671                 //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: ' . $visitorInstance->__toString() . ' has visited - FINISHED');
672         }
673
674         /**
675          * Clears all stacker
676          *
677          * @return      void
678          */
679         public function clearAllStacker () {
680                 // Do the cleanup (no flushing)
681                 foreach (
682                         array(
683                                 self::STACKER_NAME_UNDECLARED,
684                                 self::STACKER_NAME_DECLARED,
685                                 self::STACKER_NAME_OUTGOING,
686                                 self::STACKER_NAME_DECODED_INCOMING,
687                                 self::STACKER_NAME_DECODED_HANDLED,
688                                 self::STACKER_NAME_BACK_BUFFER
689                         ) as $stackerName) {
690                                 // Clear this stacker by forcing an init
691                                 $this->getStackerInstance()->initStacker($stackerName, true);
692                 } // END - foreach
693
694                 // Debug message
695                 /* DEBUG: */ $this->debugOutput('PACKAGE: All stacker have been re-initialized.');
696         }
697 }
698
699 // [EOF]
700 ?>