]> git.mxchange.org Git - hub.git/blob - application/hub/main/package/class_NetworkPackage.php
Also visit the NetworkPackage class to clear all stacks
[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                 // Clean-up the list
271                 $discoveryInstance->clearRecipients();
272         }
273
274         /**
275          * Delivers raw package data. In short, this will discover the raw socket
276          * resource through a discovery class (which will analyse the receipient of
277          * the package), register the socket with the connection (handler/helper?)
278          * instance and finally push the raw data on our outgoing queue.
279          *
280          * @param       $packageData    Raw package data in an array
281          * @return      void
282          */
283         private function deliverRawPackageData (array $packageData) {
284                 /*
285                  * This package may become big, depending on the shared object size or
286                  * delivered message size which shouldn't be so long (to save
287                  * bandwidth). Because of the nature of the used protocol (TCP) we need
288                  * to split it up into smaller pieces to fit it into a TCP frame.
289                  *
290                  * So first we need (again) a discovery class but now a protocol
291                  * discovery to choose the right socket resource. The discovery class
292                  * should take a look at the raw package data itself and then decide
293                  * which (configurable!) protocol should be used for that type of
294                  * package.
295                  */
296                 $discoveryInstance = SocketDiscoveryFactory::createSocketDiscoveryInstance();
297
298                 // Now discover the right protocol
299                 $socketResource = $discoveryInstance->discoverSocket($packageData);
300
301                 // Debug message
302                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' after discoverSocket() has been called.');
303
304                 // We have to put this socket in our registry, so get an instance
305                 $registryInstance = SocketRegistry::createSocketRegistry();
306
307                 // Get the listener from registry
308                 $helperInstance = Registry::getRegistry()->getInstance('connection');
309
310                 // Debug message
311                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' before isSocketRegistered() has been called.');
312
313                 // Is it not there?
314                 if ((is_resource($socketResource)) && (!$registryInstance->isSocketRegistered($helperInstance, $socketResource))) {
315                         // Then register it
316                         $registryInstance->registerSocket($helperInstance, $socketResource, $packageData);
317                 } // END - if
318
319                 // Debug message
320                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' after isSocketRegistered() has been called.');
321
322                 // Make sure the connection is up
323                 $helperInstance->getStateInstance()->validatePeerStateConnected();
324
325                 // Debug message
326                 //* NOISY-DEBUG: */ $this->debugOutput('NETWORK-PACKAGE: Reached line ' . __LINE__ . ' after validatePeerStateConnected() has been called.');
327
328                 // We enqueue it again, but now in the out-going queue
329                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_OUTGOING, $packageData);
330         }
331
332         /**
333          * Sends waiting packages
334          *
335          * @param       $packageData    Raw package data
336          * @return      void
337          */
338         private function sendOutgoingRawPackageData (array $packageData) {
339                 // Init sent bytes
340                 $sentBytes = 0;
341
342                 // Get the right connection instance
343                 $helperInstance = SocketRegistry::createSocketRegistry()->getHandlerInstanceFromPackageData($packageData);
344
345                 // Is this connection still alive?
346                 if ($helperInstance->isShuttedDown()) {
347                         // This connection is shutting down
348                         // @TODO We may want to do somthing more here?
349                         return;
350                 } // END - if
351
352                 // Sent out package data
353                 $sentBytes = $helperInstance->sendRawPackageData($packageData);
354
355                 // Remember unsent raw bytes in back-buffer, if any
356                 $this->storeUnsentBytesInBackBuffer($packageData, $sentBytes);
357         }
358
359         /**
360          * "Enqueues" raw content into this delivery class by reading the raw content
361          * from given template instance and pushing it on the 'undeclared' stack.
362          *
363          * @param       $helperInstance         An instance of a HelpableHub class
364          * @param       $nodeInstance           An instance of a NodeHelper class
365          * @return      void
366          */
367         public function enqueueRawDataFromTemplate (HelpableHub $helperInstance, NodeHelper $nodeInstance) {
368                 // Get the raw content ...
369                 $content = $helperInstance->getTemplateInstance()->getRawTemplateData();
370
371                 // ... and compress it
372                 $content = $this->getCompressorInstance()->compressStream($content);
373
374                 // Add magic in front of it and hash behind it, including BASE64 encoding
375                 $content = sprintf(self::PACKAGE_MASK,
376                         // 1.) Compressor's extension
377                         $this->getCompressorInstance()->getCompressorExtension(),
378                         // 2.) Raw package content, encoded with BASE64
379                         base64_encode($content),
380                         // 3.) Tags
381                         implode(self::PACKAGE_TAGS_SEPERATOR, $helperInstance->getPackageTags()),
382                         // 4.) Checksum
383                         $this->getHashFromContent($content, $helperInstance, $nodeInstance)
384                 );
385
386                 // Now prepare the temporary array and push it on the 'undeclared' stack
387                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_UNDECLARED, array(
388                         self::PACKAGE_DATA_SENDER    => $nodeInstance->getSessionId(),
389                         self::PACKAGE_DATA_RECIPIENT => $helperInstance->getRecipientType(),
390                         self::PACKAGE_DATA_CONTENT   => $content,
391                 ));
392         }
393
394         /**
395          * Checks wether a package has been enqueued for delivery.
396          *
397          * @return      $isEnqueued             Wether a package is enqueued
398          */
399         public function isPackageEnqueued () {
400                 // Check wether the stacker is not empty
401                 $isEnqueued = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_UNDECLARED)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_UNDECLARED)));
402
403                 // Return the result
404                 return $isEnqueued;
405         }
406
407         /**
408          * Checks wether a package has been declared
409          *
410          * @return      $isDeclared             Wether a package is declared
411          */
412         public function isPackageDeclared () {
413                 // Check wether the stacker is not empty
414                 $isDeclared = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_DECLARED)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECLARED)));
415
416                 // Return the result
417                 return $isDeclared;
418         }
419
420         /**
421          * Checks wether a package should be sent out
422          *
423          * @return      $isWaitingDelivery      Wether a package is waiting for delivery
424          */
425         public function isPackageWaitingForDelivery () {
426                 // Check wether the stacker is not empty
427                 $isWaitingDelivery = (($this->getStackerInstance()->isStackInitialized(self::STACKER_NAME_OUTGOING)) && (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_OUTGOING)));
428
429                 // Return the result
430                 return $isWaitingDelivery;
431         }
432
433         /**
434          * Delivers an enqueued package to the stated destination. If a non-session
435          * id is provided, recipient resolver is being asked (and instanced once).
436          * This allows that a single package is being delivered to multiple targets
437          * without enqueueing it for every target. If no target is provided or it
438          * can't be determined a NoTargetException is being thrown.
439          *
440          * @return      void
441          * @throws      NoTargetException       If no target can't be determined
442          */
443         public function declareEnqueuedPackage () {
444                 // Make sure this method isn't working if there is no package enqueued
445                 if (!$this->isPackageEnqueued()) {
446                         // This is not fatal but should be avoided
447                         // @TODO Add some logging here
448                         return;
449                 } // END - if
450
451                 // Now we know for sure there are packages to deliver, we can start
452                 // with the first one.
453                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_UNDECLARED);
454
455                 // Declare the raw package data for delivery
456                 $this->declareRawPackageData($packageData);
457
458                 // And remove it finally
459                 $this->getStackerInstance()->popNamed(self::STACKER_NAME_UNDECLARED);
460         }
461
462         /**
463          * Delivers the next declared package. Only one package per time will be sent
464          * because this may take time and slows down the whole delivery
465          * infrastructure.
466          *
467          * @return      void
468          */
469         public function deliverDeclaredPackage () {
470                 // Sanity check if we have packages declared
471                 if (!$this->isPackageDeclared()) {
472                         // This is not fatal but should be avoided
473                         // @TODO Add some logging here
474                         return;
475                 } // END - if
476
477                 // Get the package again
478                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_DECLARED);
479
480                 try {
481                         // And try to send it
482                         $this->deliverRawPackageData($packageData);
483
484                         // And remove it finally
485                         $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECLARED);
486                 } catch (InvalidStateException $e) {
487                         // The state is not excepected (shall be 'connected')
488                         $this->debugOutput('PACKAGE: Caught exception ' . $e->__toString() . ' with message=' . $e->getMessage());
489                 }
490         }
491
492         /**
493          * Sends waiting packages out for delivery
494          *
495          * @return      void
496          */
497         public function sendWaitingPackage () {
498                 // Send any waiting bytes in the back-buffer before sending a new package
499                 $this->sendBackBufferBytes();
500
501                 // Sanity check if we have packages waiting for delivery
502                 if (!$this->isPackageWaitingForDelivery()) {
503                         // This is not fatal but should be avoided
504                         $this->debugOutput('PACKAGE: No package is waiting for delivery, but ' . __METHOD__ . ' was called.');
505                         return;
506                 } // END - if
507
508                 // Get the package again
509                 $packageData = $this->getStackerInstance()->getNamed(self::STACKER_NAME_OUTGOING);
510
511                 try {
512                         // Now try to send it
513                         $this->sendOutgoingRawPackageData($packageData);
514
515                         // And remove it finally
516                         $this->getStackerInstance()->popNamed(self::STACKER_NAME_OUTGOING);
517                 } catch (InvalidSocketException $e) {
518                         // Output exception message
519                         $this->debugOutput('PACKAGE: Package was not delivered: ' . $e->getMessage());
520                 }
521         }
522
523         ///////////////////////////////////////////////////////////////////////////
524         //                   Receiving packages / raw data
525         ///////////////////////////////////////////////////////////////////////////
526
527         /**
528          * Checks wether decoded raw data is pending
529          *
530          * @return      $isPending      Wether decoded raw data is pending
531          */
532         private function isDecodedDataPending () {
533                 // Just return wether the stack is not empty
534                 $isPending = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_INCOMING));
535
536                 // Return the status
537                 return $isPending;
538         }
539
540         /**
541          * Checks wether new raw package data has arrived at a socket
542          *
543          * @param       $poolInstance   An instance of a PoolableListener class
544          * @return      $hasArrived             Wether new raw package data has arrived for processing
545          */
546         public function isNewRawDataPending (PoolableListener $poolInstance) {
547                 // Visit the pool. This monitors the pool for incoming raw data.
548                 $poolInstance->accept($this->getVisitorInstance());
549
550                 // Check for new data arrival
551                 $hasArrived = $this->isDecodedDataPending();
552
553                 // Return the status
554                 return $hasArrived;
555         }
556
557         /**
558          * Handles the incoming decoded raw data. This method does not "convert" the
559          * decoded data back into a package array, it just "handles" it and pushs it
560          * on the next stack.
561          *
562          * @return      void
563          */
564         public function handleIncomingDecodedData () {
565                 /*
566                  * This method should only be called if decoded raw data is pending,
567                  * so check it again.
568                  */
569                 if (!$this->isDecodedDataPending()) {
570                         // This is not fatal but should be avoided
571                         // @TODO Add some logging here
572                         return;
573                 } // END - if
574
575                 // Very noisy debug message:
576                 /* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: Stacker size is ' . $this->getStackerInstance()->getStackCount(self::STACKER_NAME_DECODED_INCOMING) . ' entries.');
577
578                 // "Pop" the next entry (the same array again) from the stack
579                 $decodedData = $this->getStackerInstance()->popNamed(self::STACKER_NAME_DECODED_INCOMING);
580
581                 // Make sure both array elements are there
582                 assert((is_array($decodedData)) && (isset($decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA])) && (isset($decodedData[BaseRawDataHandler::PACKAGE_ERROR_CODE])));
583
584                 /*
585                  * Also make sure the error code is SOCKET_ERROR_UNHANDLED because we
586                  * only want to handle unhandled packages here.
587                  */
588                 assert($decodedData[BaseRawDataHandler::PACKAGE_ERROR_CODE] == BaseRawDataHandler::SOCKET_ERROR_UNHANDLED);
589
590                 // Remove the last chunk seperator (because it is being added and we don't need it)
591                 if (substr($decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA], -1, 1) == PackageFragmenter::CHUNK_SEPERATOR) {
592                         // It is there and should be removed
593                         $decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA] = substr($decodedData[BaseRawDataHandler::PACKAGE_DECODED_DATA], 0, -1);
594                 } // END - if
595
596                 // This package is "handled" and can be pushed on the next stack
597                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_HANDLED, $decodedData);
598         }
599
600         /**
601          * Adds raw decoded data from the given handler instance to this receiver
602          *
603          * @param       $handlerInstance        An instance of a Networkable class
604          * @return      void
605          */
606         public function addDecodedDataToIncomingStack (Networkable $handlerInstance) {
607                 /*
608                  * Get the decoded data from the handler, this is an array with
609                  * 'decoded_data' and 'error_code' as elements.
610                  */
611                 $decodedData = $handlerInstance->getNextDecodedData();
612
613                 // Very noisy debug message:
614                 //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: decodedData[' . gettype($decodedData) . ']=' . print_r($decodedData, true));
615
616                 // And push it on our stack
617                 $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_INCOMING, $decodedData);
618         }
619
620         /**
621          * Checks wether incoming decoded data is handled.
622          *
623          * @return      $isHandled      Wether incoming decoded data is handled
624          */
625         public function isIncomingDecodedDataHandled () {
626                 // Determine if the stack is not empty
627                 $isHandled = (!$this->getStackerInstance()->isStackEmpty(self::STACKER_NAME_DECODED_HANDLED));
628
629                 // Return it
630                 return $isHandled;
631         }
632
633         /**
634          * Assembles incoming decoded data so it will become an abstract network
635          * package again.
636          *
637          * @return      void
638          */
639         public function assembleDecodedDataToPackage () {
640                 $this->partialStub('Please implement this method.');
641         }
642
643         /**
644          * Checks wether a new package has arrived
645          *
646          * @return      $hasArrived             Wether a new package has arrived for processing
647          */
648         public function isNewPackageArrived () {
649                 // @TODO Add some content here
650         }
651
652         /**
653          * Accepts the visitor to process the visit "request"
654          *
655          * @param       $visitorInstance        An instance of a Visitor class
656          * @return      void
657          */
658         public function accept (Visitor $visitorInstance) {
659                 // Debug message
660                 //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: ' . $visitorInstance->__toString() . ' has visited - START');
661
662                 // Visit the package
663                 $visitorInstance->visitNetworkPackage($this);
664
665                 // Debug message
666                 //* NOISY-DEBUG: */ $this->debugOutput('PACKAGE: ' . $visitorInstance->__toString() . ' has visited - FINISHED');
667         }
668
669         /**
670          * Clears all stacks
671          *
672          * @return      void
673          */
674         public function clearAllStacks () {
675                 // Do the cleanup (no flushing)
676                 foreach (
677                         array(
678                                 self::STACKER_NAME_UNDECLARED,
679                                 self::STACKER_NAME_DECLARED,
680                                 self::STACKER_NAME_OUTGOING,
681                                 self::STACKER_NAME_DECODED_INCOMING,
682                                 self::STACKER_NAME_DECODED_HANDLED,
683                                 self::STACKER_NAME_BACK_BUFFER
684                         ) as $stackerName) {
685                                 // Clear this stacker by forcing an init
686                                 $this->getStackerInstance()->initStacker($stackerName, true);
687                 } // END - foreach
688
689                 // Debug message
690                 /* DEBUG: */ $this->debugOutput('PACKAGE: All stackers has be re-initialized.');
691         }
692 }
693
694 // [EOF]
695 ?>