]> git.mxchange.org Git - core.git/blob - inc/classes/main/class_BaseFrameworkSystem.php
94769e1271ad49c672cb9e4e2d862bb19925cb79
[core.git] / inc / classes / main / class_BaseFrameworkSystem.php
1 <?php
2 /**
3  * The simulator system class is the super class of all other classes. This
4  * class handles saving of games etc.
5  *
6  * @author              Roland Haeder <webmaster@shipsimu.org>
7  * @version             0.0.0
8  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
9  * @license             GNU GPL 3.0 or any newer version
10  * @link                http://www.shipsimu.org
11  *
12  * This program is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 3 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program. If not, see <http://www.gnu.org/licenses/>.
24  */
25 class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
26         /**
27          * Length of output from hash()
28          */
29         private static $hashLength = NULL;
30
31         /**
32          * The real class name
33          */
34         private $realClass = 'BaseFrameworkSystem';
35
36         /**
37          * Instance of a request class
38          */
39         private $requestInstance = NULL;
40
41         /**
42          * Instance of a response class
43          */
44         private $responseInstance = NULL;
45
46         /**
47          * Search criteria instance
48          */
49         private $searchInstance = NULL;
50
51         /**
52          * Update criteria instance
53          */
54         private $updateInstance = NULL;
55
56         /**
57          * The file I/O instance for the template loader
58          */
59         private $fileIoInstance = NULL;
60
61         /**
62          * Resolver instance
63          */
64         private $resolverInstance = NULL;
65
66         /**
67          * Template engine instance
68          */
69         private $templateInstance = NULL;
70
71         /**
72          * Database result instance
73          */
74         private $resultInstance = NULL;
75
76         /**
77          * Instance for user class
78          */
79         private $userInstance = NULL;
80
81         /**
82          * A controller instance
83          */
84         private $controllerInstance = NULL;
85
86         /**
87          * Instance of a RNG
88          */
89         private $rngInstance = NULL;
90
91         /**
92          * Instance of a crypto helper
93          */
94         private $cryptoInstance = NULL;
95
96         /**
97          * Instance of an Iterator class
98          */
99         private $iteratorInstance = NULL;
100
101         /**
102          * Instance of the list
103          */
104         private $listInstance = NULL;
105
106         /**
107          * Instance of a menu
108          */
109         private $menuInstance = NULL;
110
111         /**
112          * Instance of the image
113          */
114         private $imageInstance = NULL;
115
116         /**
117          * Instance of the stacker
118          */
119         private $stackInstance = NULL;
120
121         /**
122          * A Compressor instance
123          */
124         private $compressorInstance = NULL;
125
126         /**
127          * A Parseable instance
128          */
129         private $parserInstance = NULL;
130
131         /**
132          * A HandleableProtocol instance
133          */
134         private $protocolInstance = NULL;
135
136         /**
137          * A database wrapper instance
138          */
139         private $databaseInstance = NULL;
140
141         /**
142          * A helper instance for the form
143          */
144         private $helperInstance = NULL;
145
146         /**
147          * An instance of a Sourceable class
148          */
149         private $sourceInstance = NULL;
150
151         /**
152          * An instance of a UrlSource class
153          */
154         private $urlSourceInstance = NULL;
155
156         /**
157          * An instance of a InputStream class
158          */
159         private $inputStreamInstance = NULL;
160
161         /**
162          * An instance of a OutputStream class
163          */
164         private $outputStreamInstance = NULL;
165
166         /**
167          * Networkable handler instance
168          */
169         private $handlerInstance = NULL;
170
171         /**
172          * Visitor handler instance
173          */
174         private $visitorInstance = NULL;
175
176         /**
177          * DHT instance
178          */
179         private $dhtInstance = NULL;
180
181         /**
182          * An instance of a database wrapper class
183          */
184         private $wrapperInstance = NULL;
185
186         /**
187          * An instance of a file I/O pointer class (not handler)
188          */
189         private $pointerInstance = NULL;
190
191         /**
192          * An instance of an Indexable class
193          */
194         private $indexInstance = NULL;
195
196         /**
197          * An instance of a Block class
198          */
199         private $blockInstance = NULL;
200
201         /**
202          * A Minable instance
203          */
204         private $minableInstance = NULL;
205
206         /**
207          * A FrameworkDirectory instance
208          */
209         private $directoryInstance = NULL;
210
211         /**
212          * Listener instance
213          */
214         private $listenerInstance = NULL;
215
216         /**
217          * Thousands separator
218          */
219         private $thousands = '.'; // German
220
221         /**
222          * Decimal separator
223          */
224         private $decimals  = ','; // German
225
226         /**
227          * Socket resource
228          */
229         private $socketResource = FALSE;
230
231         /**
232          * Regular expression to use for validation
233          */
234         private $regularExpression = '';
235
236         /**
237          * Package data
238          */
239         private $packageData = array();
240
241         /**
242          * Generic array
243          */
244         private $genericArray = array();
245
246         /***********************
247          * Exception codes.... *
248          ***********************/
249
250         // @todo Try to clean these constants up
251         const EXCEPTION_IS_NULL_POINTER              = 0x001;
252         const EXCEPTION_IS_NO_OBJECT                 = 0x002;
253         const EXCEPTION_IS_NO_ARRAY                  = 0x003;
254         const EXCEPTION_MISSING_METHOD               = 0x004;
255         const EXCEPTION_CLASSES_NOT_MATCHING         = 0x005;
256         const EXCEPTION_INDEX_OUT_OF_BOUNDS          = 0x006;
257         const EXCEPTION_DIMENSION_ARRAY_INVALID      = 0x007;
258         const EXCEPTION_ITEM_NOT_TRADEABLE           = 0x008;
259         const EXCEPTION_ITEM_NOT_IN_PRICE_LIST       = 0x009;
260         const EXCEPTION_GENDER_IS_WRONG              = 0x00a;
261         const EXCEPTION_BIRTH_DATE_IS_INVALID        = 0x00b;
262         const EXCEPTION_EMPTY_STRUCTURES_ARRAY       = 0x00c;
263         const EXCEPTION_HAS_ALREADY_PERSONELL_LIST   = 0x00d;
264         const EXCEPTION_NOT_ENOUGTH_UNEMPLOYEES      = 0x00e;
265         const EXCEPTION_TOTAL_PRICE_NOT_CALCULATED   = 0x00f;
266         const EXCEPTION_HARBOR_HAS_NO_SHIPYARDS      = 0x010;
267         const EXCEPTION_CONTRACT_PARTNER_INVALID     = 0x011;
268         const EXCEPTION_CONTRACT_PARTNER_MISMATCH    = 0x012;
269         const EXCEPTION_CONTRACT_ALREADY_SIGNED      = 0x013;
270         const EXCEPTION_UNEXPECTED_EMPTY_STRING      = 0x014;
271         const EXCEPTION_PATH_NOT_FOUND               = 0x015;
272         const EXCEPTION_INVALID_PATH_NAME            = 0x016;
273         const EXCEPTION_READ_PROTECED_PATH           = 0x017;
274         const EXCEPTION_WRITE_PROTECED_PATH          = 0x018;
275         const EXCEPTION_DIR_POINTER_INVALID          = 0x019;
276         const EXCEPTION_FILE_POINTER_INVALID         = 0x01a;
277         const EXCEPTION_INVALID_RESOURCE             = 0x01b;
278         const EXCEPTION_UNEXPECTED_OBJECT            = 0x01c;
279         const EXCEPTION_LIMIT_ELEMENT_IS_UNSUPPORTED = 0x01d;
280         const EXCEPTION_GETTER_IS_MISSING            = 0x01e;
281         const EXCEPTION_ARRAY_EXPECTED               = 0x01f;
282         const EXCEPTION_ARRAY_HAS_INVALID_COUNT      = 0x020;
283         const EXCEPTION_ID_IS_INVALID_FORMAT         = 0x021;
284         const EXCEPTION_MD5_CHECKSUMS_MISMATCH       = 0x022;
285         const EXCEPTION_UNEXPECTED_STRING_SIZE       = 0x023;
286         const EXCEPTION_SIMULATOR_ID_INVALID         = 0x024;
287         const EXCEPTION_MISMATCHING_COMPRESSORS      = 0x025;
288         const EXCEPTION_CONTAINER_ITEM_IS_NULL       = 0x026;
289         const EXCEPTION_ITEM_IS_NO_ARRAY             = 0x027;
290         const EXCEPTION_CONTAINER_MAYBE_DAMAGED      = 0x028;
291         const EXCEPTION_INVALID_STRING               = 0x029;
292         const EXCEPTION_VARIABLE_NOT_SET             = 0x02a;
293         const EXCEPTION_ATTRIBUTES_ARE_MISSING       = 0x02b;
294         const EXCEPTION_ARRAY_ELEMENTS_MISSING       = 0x02c;
295         const EXCEPTION_TEMPLATE_ENGINE_UNSUPPORTED  = 0x02d;
296         const EXCEPTION_UNSPPORTED_OPERATION         = 0x02e;
297         const EXCEPTION_FACTORY_REQUIRE_PARAMETER    = 0x02f;
298         const EXCEPTION_MISSING_ELEMENT              = 0x030;
299         const EXCEPTION_HEADERS_ALREADY_SENT         = 0x031;
300         const EXCEPTION_DEFAULT_CONTROLLER_GONE      = 0x032;
301         const EXCEPTION_CLASS_NOT_FOUND              = 0x033;
302         const EXCEPTION_REQUIRED_INTERFACE_MISSING   = 0x034;
303         const EXCEPTION_FATAL_ERROR                  = 0x035;
304         const EXCEPTION_FILE_NOT_FOUND               = 0x036;
305         const EXCEPTION_ASSERTION_FAILED             = 0x037;
306         const EXCEPTION_FILE_CANNOT_BE_READ          = 0x038;
307         const EXCEPTION_DATABASE_UPDATED_NOT_ALLOWED = 0x039;
308         const EXCEPTION_FILTER_CHAIN_INTERCEPTED     = 0x03a;
309
310         /**
311          * Hexadecimal->Decimal translation array
312          */
313         private static $hexdec = array(
314                 '0' => 0,
315                 '1' => 1,
316                 '2' => 2,
317                 '3' => 3,
318                 '4' => 4,
319                 '5' => 5,
320                 '6' => 6,
321                 '7' => 7,
322                 '8' => 8,
323                 '9' => 9,
324                 'a' => 10,
325                 'b' => 11,
326                 'c' => 12,
327                 'd' => 13,
328                 'e' => 14,
329                 'f' => 15
330         );
331
332         /**
333          * Decimal->hexadecimal translation array
334          */
335         private static $dechex = array(
336                  0 => '0',
337                  1 => '1',
338                  2 => '2',
339                  3 => '3',
340                  4 => '4',
341                  5 => '5',
342                  6 => '6',
343                  7 => '7',
344                  8 => '8',
345                  9 => '9',
346                 10 => 'a',
347                 11 => 'b',
348                 12 => 'c',
349                 13 => 'd',
350                 14 => 'e',
351                 15 => 'f'
352         );
353
354         /**
355          * Startup time in miliseconds
356          */
357         private static $startupTime = 0;
358
359         /**
360          * Protected super constructor
361          *
362          * @param       $className      Name of the class
363          * @return      void
364          */
365         protected function __construct ($className) {
366                 // Set real class
367                 $this->setRealClass($className);
368
369                 // Set configuration instance if no registry ...
370                 if (!$this instanceof Register) {
371                         // ... because registries doesn't need to be configured
372                         $this->setConfigInstance(FrameworkConfiguration::getSelfInstance());
373                 } // END - if
374
375                 // Is the startup time set? (0 cannot be TRUE anymore)
376                 if (self::$startupTime == 0) {
377                         // Then set it
378                         self::$startupTime = microtime(TRUE);
379                 } // END - if
380         }
381
382         /**
383          * Destructor for all classes
384          *
385          * @return      void
386          */
387         public function __destruct () {
388                 // Flush any updated entries to the database
389                 $this->flushPendingUpdates();
390
391                 // Is this object already destroyed?
392                 if ($this->__toString() != 'DestructedObject') {
393                         // Destroy all informations about this class but keep some text about it alive
394                         $this->setRealClass('DestructedObject');
395                 } elseif ((defined('DEBUG_DESTRUCTOR')) && (is_object($this->getDebugInstance()))) {
396                         // Already destructed object
397                         self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:] The object <span class="object_name">%s</span> is already destroyed.',
398                                 __CLASS__,
399                                 $this->__toString()
400                         ));
401                 } else {
402                         // Do not call this twice
403                         trigger_error(__METHOD__ . ': Called twice.');
404                         exit;
405                 }
406         }
407
408         /**
409          * The __call() method where all non-implemented methods end up
410          *
411          * @param       $methodName             Name of the missing method
412          * @args        $args                   Arguments passed to the method
413          * @return      void
414          */
415         public final function __call ($methodName, $args) {
416                 return self::__callStatic($methodName, $args);
417         }
418
419         /**
420          * The __callStatic() method where all non-implemented static methods end up
421          *
422          * @param       $methodName             Name of the missing method
423          * @args        $args                   Arguments passed to the method
424          * @return      void
425          */
426         public static final function __callStatic ($methodName, $args) {
427                 // Init argument string
428                 $argsString = '';
429
430                 // Is it empty or an array?
431                 if (empty($args)) {
432                         // No arguments
433                         $argsString = 'NULL';
434                 } elseif (is_array($args)) {
435                         // Some arguments are there
436                         foreach ($args as $arg) {
437                                 // Add the value itself if not array. This prevents 'array to string conversion' message
438                                 if (is_array($arg)) {
439                                         $argsString .= 'Array';
440                                 } else {
441                                         $argsString .= $arg;
442                                 }
443
444                                 // Add data about the argument
445                                 $argsString .= ' (' . gettype($arg);
446
447                                 if (is_string($arg)) {
448                                         // Add length for strings
449                                         $argsString .= ', ' . strlen($arg);
450                                 } elseif (is_array($arg)) {
451                                         // .. or size if array
452                                         $argsString .= ', ' . count($arg);
453                                 } elseif ($arg === TRUE) {
454                                         // ... is boolean 'TRUE'
455                                         $argsString .= ', TRUE';
456                                 } elseif ($arg === FALSE) {
457                                         // ... is boolean 'FALSE'
458                                         $argsString .= ', FALSE';
459                                 }
460
461                                 // Closing bracket
462                                 $argsString .= '), ';
463                         } // END - foreach
464
465                         // Remove last comma
466                         if (substr($argsString, -2, 1) == ',') {
467                                 $argsString = substr($argsString, 0, -2);
468                         } // END - if
469                 } else {
470                         // Invalid arguments!
471                         $argsString = '!INVALID:' . gettype($args) . '!';
472                 }
473
474                 // Output stub message
475                 // @TODO __CLASS__ does always return BaseFrameworkSystem but not the extending (=child) class
476                 self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[unknown::%s:] Stub! Args: %s',
477                         $methodName,
478                         $argsString
479                 ));
480
481                 // Return nothing
482                 return NULL;
483         }
484
485         /**
486          * Getter for $realClass
487          *
488          * @return      $realClass The name of the real class (not BaseFrameworkSystem)
489          */
490         public function __toString () {
491                 return $this->realClass;
492         }
493
494         /**
495          * Magic function to catch setting of missing but set class fields/attributes
496          *
497          * @param       $name   Name of the field/attribute
498          * @param       $value  Value to store
499          * @return      void
500          */
501         public final function __set ($name, $value) {
502                 $this->debugBackTrace(sprintf('Tried to set a missing field. name=%s, value[%s]=%s',
503                         $name,
504                         gettype($value),
505                         print_r($value, TRUE)
506                 ));
507         }
508
509         /**
510          * Magic function to catch getting of missing fields/attributes
511          *
512          * @param       $name   Name of the field/attribute
513          * @return      void
514          */
515         public final function __get ($name) {
516                 $this->debugBackTrace(sprintf('Tried to get a missing field. name=%s',
517                         $name
518                 ));
519         }
520
521         /**
522          * Magic function to catch unsetting of missing fields/attributes
523          *
524          * @param       $name   Name of the field/attribute
525          * @return      void
526          */
527         public final function __unset ($name) {
528                 $this->debugBackTrace(sprintf('Tried to unset a missing field. name=%s',
529                         $name
530                 ));
531         }
532
533         /**
534          * Setter for the real class name
535          *
536          * @param       $realClass      Class name (string)
537          * @return      void
538          */
539         public final function setRealClass ($realClass) {
540                 // Set real class
541                 $this->realClass = (string) $realClass;
542         }
543
544         /**
545          * Setter for database result instance
546          *
547          * @param       $resultInstance         An instance of a database result class
548          * @return      void
549          * @todo        SearchableResult and UpdateableResult shall have a super interface to use here
550          */
551         protected final function setResultInstance (SearchableResult $resultInstance) {
552                 $this->resultInstance =  $resultInstance;
553         }
554
555         /**
556          * Getter for database result instance
557          *
558          * @return      $resultInstance         An instance of a database result class
559          */
560         public final function getResultInstance () {
561                 return $this->resultInstance;
562         }
563
564         /**
565          * Setter for template engine instances
566          *
567          * @param       $templateInstance       An instance of a template engine class
568          * @return      void
569          */
570         protected final function setTemplateInstance (CompileableTemplate $templateInstance) {
571                 $this->templateInstance = $templateInstance;
572         }
573
574         /**
575          * Getter for template engine instances
576          *
577          * @return      $templateInstance       An instance of a template engine class
578          */
579         protected final function getTemplateInstance () {
580                 return $this->templateInstance;
581         }
582
583         /**
584          * Setter for search instance
585          *
586          * @param       $searchInstance         Searchable criteria instance
587          * @return      void
588          */
589         public final function setSearchInstance (LocalSearchCriteria $searchInstance) {
590                 $this->searchInstance = $searchInstance;
591         }
592
593         /**
594          * Getter for search instance
595          *
596          * @return      $searchInstance         Searchable criteria instance
597          */
598         public final function getSearchInstance () {
599                 return $this->searchInstance;
600         }
601
602         /**
603          * Setter for update instance
604          *
605          * @param       $updateInstance         Searchable criteria instance
606          * @return      void
607          */
608         public final function setUpdateInstance (LocalUpdateCriteria $updateInstance) {
609                 $this->updateInstance = $updateInstance;
610         }
611
612         /**
613          * Getter for update instance
614          *
615          * @return      $updateInstance         Updateable criteria instance
616          */
617         public final function getUpdateInstance () {
618                 return $this->updateInstance;
619         }
620
621         /**
622          * Setter for resolver instance
623          *
624          * @param       $resolverInstance       Instance of a command resolver class
625          * @return      void
626          */
627         public final function setResolverInstance (Resolver $resolverInstance) {
628                 $this->resolverInstance = $resolverInstance;
629         }
630
631         /**
632          * Getter for resolver instance
633          *
634          * @return      $resolverInstance       Instance of a command resolver class
635          */
636         public final function getResolverInstance () {
637                 return $this->resolverInstance;
638         }
639
640         /**
641          * Setter for language instance
642          *
643          * @param       $configInstance         The configuration instance which shall
644          *                                                              be FrameworkConfiguration
645          * @return      void
646          */
647         public final function setConfigInstance (FrameworkConfiguration $configInstance) {
648                 Registry::getRegistry()->addInstance('config', $configInstance);
649         }
650
651         /**
652          * Getter for configuration instance
653          *
654          * @return      $configInstance         Configuration instance
655          */
656         public final function getConfigInstance () {
657                 $configInstance = Registry::getRegistry()->getInstance('config');
658                 return $configInstance;
659         }
660
661         /**
662          * Setter for debug instance
663          *
664          * @param       $debugInstance  The instance for debug output class
665          * @return      void
666          */
667         public final function setDebugInstance (DebugMiddleware $debugInstance) {
668                 Registry::getRegistry()->addInstance('debug', $debugInstance);
669         }
670
671         /**
672          * Getter for debug instance
673          *
674          * @return      $debugInstance  Instance to class DebugConsoleOutput or DebugWebOutput
675          */
676         public final function getDebugInstance () {
677                 // Get debug instance
678                 $debugInstance = Registry::getRegistry()->getInstance('debug');
679
680                 // Return it
681                 return $debugInstance;
682         }
683
684         /**
685          * Setter for web output instance
686          *
687          * @param       $webInstance    The instance for web output class
688          * @return      void
689          */
690         public final function setWebOutputInstance (OutputStreamer $webInstance) {
691                 Registry::getRegistry()->addInstance('web_output', $webInstance);
692         }
693
694         /**
695          * Getter for web output instance
696          *
697          * @return      $webOutputInstance - Instance to class WebOutput
698          */
699         public final function getWebOutputInstance () {
700                 $webOutputInstance = Registry::getRegistry()->getInstance('web_output');
701                 return $webOutputInstance;
702         }
703
704         /**
705          * Setter for database instance
706          *
707          * @param       $databaseInstance       The instance for the database connection (forced DatabaseConnection)
708          * @return      void
709          */
710         public final function setDatabaseInstance (DatabaseConnection $databaseInstance) {
711                 Registry::getRegistry()->addInstance('db_instance', $databaseInstance);
712         }
713
714         /**
715          * Getter for database layer
716          *
717          * @return      $databaseInstance       The database layer instance
718          */
719         public final function getDatabaseInstance () {
720                 // Get instance
721                 $databaseInstance = Registry::getRegistry()->getInstance('db_instance');
722
723                 // Return instance
724                 return $databaseInstance;
725         }
726
727         /**
728          * Setter for compressor channel
729          *
730          * @param       $compressorInstance             An instance of CompressorChannel
731          * @return      void
732          */
733         public final function setCompressorChannel (CompressorChannel $compressorInstance) {
734                 Registry::getRegistry()->addInstance('compressor', $compressorInstance);
735         }
736
737         /**
738          * Getter for compressor channel
739          *
740          * @return      $compressorInstance             The compressor channel
741          */
742         public final function getCompressorChannel () {
743                 $compressorInstance = Registry::getRegistry()->getInstance('compressor');
744                 return $compressorInstance;
745         }
746
747         /**
748          * Protected getter for a manageable application helper class
749          *
750          * @return      $applicationInstance    An instance of a manageable application helper class
751          */
752         protected final function getApplicationInstance () {
753                 $applicationInstance = Registry::getRegistry()->getInstance('application');
754                 return $applicationInstance;
755         }
756
757         /**
758          * Setter for a manageable application helper class
759          *
760          * @param       $applicationInstance    An instance of a manageable application helper class
761          * @return      void
762          */
763         public final function setApplicationInstance (ManageableApplication $applicationInstance) {
764                 Registry::getRegistry()->addInstance('application', $applicationInstance);
765         }
766
767         /**
768          * Setter for request instance
769          *
770          * @param       $requestInstance        An instance of a Requestable class
771          * @return      void
772          */
773         public final function setRequestInstance (Requestable $requestInstance) {
774                 $this->requestInstance = $requestInstance;
775         }
776
777         /**
778          * Getter for request instance
779          *
780          * @return      $requestInstance        An instance of a Requestable class
781          */
782         public final function getRequestInstance () {
783                 return $this->requestInstance;
784         }
785
786         /**
787          * Setter for response instance
788          *
789          * @param       $responseInstance       An instance of a Responseable class
790          * @return      void
791          */
792         public final function setResponseInstance (Responseable $responseInstance) {
793                 $this->responseInstance = $responseInstance;
794         }
795
796         /**
797          * Getter for response instance
798          *
799          * @return      $responseInstance       An instance of a Responseable class
800          */
801         public final function getResponseInstance () {
802                 return $this->responseInstance;
803         }
804
805         /**
806          * Private getter for language instance
807          *
808          * @return      $langInstance   An instance to the language sub-system
809          */
810         protected final function getLanguageInstance () {
811                 $langInstance = Registry::getRegistry()->getInstance('language');
812                 return $langInstance;
813         }
814
815         /**
816          * Setter for language instance
817          *
818          * @param       $langInstance   An instance to the language sub-system
819          * @return      void
820          * @see         LanguageSystem
821          */
822         public final function setLanguageInstance (ManageableLanguage $langInstance) {
823                 Registry::getRegistry()->addInstance('language', $langInstance);
824         }
825
826         /**
827          * Private getter for file IO instance
828          *
829          * @return      $fileIoInstance         An instance to the file I/O sub-system
830          */
831         protected final function getFileIoInstance () {
832                 return $this->fileIoInstance;
833         }
834
835         /**
836          * Setter for file I/O instance
837          *
838          * @param       $fileIoInstance         An instance to the file I/O sub-system
839          * @return      void
840          */
841         public final function setFileIoInstance (IoHandler $fileIoInstance) {
842                 $this->fileIoInstance = $fileIoInstance;
843         }
844
845         /**
846          * Protected setter for user instance
847          *
848          * @param       $userInstance   An instance of a user class
849          * @return      void
850          */
851         protected final function setUserInstance (ManageableAccount $userInstance) {
852                 $this->userInstance = $userInstance;
853         }
854
855         /**
856          * Getter for user instance
857          *
858          * @return      $userInstance   An instance of a user class
859          */
860         public final function getUserInstance () {
861                 return $this->userInstance;
862         }
863
864         /**
865          * Setter for controller instance (this surely breaks a bit the MVC patterm)
866          *
867          * @param       $controllerInstance             An instance of the controller
868          * @return      void
869          */
870         public final function setControllerInstance (Controller $controllerInstance) {
871                 $this->controllerInstance = $controllerInstance;
872         }
873
874         /**
875          * Getter for controller instance (this surely breaks a bit the MVC patterm)
876          *
877          * @return      $controllerInstance             An instance of the controller
878          */
879         public final function getControllerInstance () {
880                 return $this->controllerInstance;
881         }
882
883         /**
884          * Setter for RNG instance
885          *
886          * @param       $rngInstance    An instance of a random number generator (RNG)
887          * @return      void
888          */
889         protected final function setRngInstance (RandomNumberGenerator $rngInstance) {
890                 $this->rngInstance = $rngInstance;
891         }
892
893         /**
894          * Getter for RNG instance
895          *
896          * @return      $rngInstance    An instance of a random number generator (RNG)
897          */
898         public final function getRngInstance () {
899                 return $this->rngInstance;
900         }
901
902         /**
903          * Setter for Cryptable instance
904          *
905          * @param       $cryptoInstance An instance of a Cryptable class
906          * @return      void
907          */
908         protected final function setCryptoInstance (Cryptable $cryptoInstance) {
909                 $this->cryptoInstance = $cryptoInstance;
910         }
911
912         /**
913          * Getter for Cryptable instance
914          *
915          * @return      $cryptoInstance An instance of a Cryptable class
916          */
917         public final function getCryptoInstance () {
918                 return $this->cryptoInstance;
919         }
920
921         /**
922          * Setter for the list instance
923          *
924          * @param       $listInstance   A list of Listable
925          * @return      void
926          */
927         protected final function setListInstance (Listable $listInstance) {
928                 $this->listInstance = $listInstance;
929         }
930
931         /**
932          * Getter for the list instance
933          *
934          * @return      $listInstance   A list of Listable
935          */
936         protected final function getListInstance () {
937                 return $this->listInstance;
938         }
939
940         /**
941          * Setter for the menu instance
942          *
943          * @param       $menuInstance   A RenderableMenu instance
944          * @return      void
945          */
946         protected final function setMenuInstance (RenderableMenu $menuInstance) {
947                 $this->menuInstance = $menuInstance;
948         }
949
950         /**
951          * Getter for the menu instance
952          *
953          * @return      $menuInstance   A RenderableMenu instance
954          */
955         protected final function getMenuInstance () {
956                 return $this->menuInstance;
957         }
958
959         /**
960          * Setter for image instance
961          *
962          * @param       $imageInstance  An instance of an image
963          * @return      void
964          */
965         public final function setImageInstance (BaseImage $imageInstance) {
966                 $this->imageInstance = $imageInstance;
967         }
968
969         /**
970          * Getter for image instance
971          *
972          * @return      $imageInstance  An instance of an image
973          */
974         public final function getImageInstance () {
975                 return $this->imageInstance;
976         }
977
978         /**
979          * Setter for stacker instance
980          *
981          * @param       $stackInstance  An instance of an stacker
982          * @return      void
983          */
984         public final function setStackInstance (Stackable $stackInstance) {
985                 $this->stackInstance = $stackInstance;
986         }
987
988         /**
989          * Getter for stacker instance
990          *
991          * @return      $stackInstance  An instance of an stacker
992          */
993         public final function getStackInstance () {
994                 return $this->stackInstance;
995         }
996
997         /**
998          * Setter for compressor instance
999          *
1000          * @param       $compressorInstance     An instance of an compressor
1001          * @return      void
1002          */
1003         public final function setCompressorInstance (Compressor $compressorInstance) {
1004                 $this->compressorInstance = $compressorInstance;
1005         }
1006
1007         /**
1008          * Getter for compressor instance
1009          *
1010          * @return      $compressorInstance     An instance of an compressor
1011          */
1012         public final function getCompressorInstance () {
1013                 return $this->compressorInstance;
1014         }
1015
1016         /**
1017          * Setter for Parseable instance
1018          *
1019          * @param       $parserInstance An instance of an Parseable
1020          * @return      void
1021          */
1022         public final function setParserInstance (Parseable $parserInstance) {
1023                 $this->parserInstance = $parserInstance;
1024         }
1025
1026         /**
1027          * Getter for Parseable instance
1028          *
1029          * @return      $parserInstance An instance of an Parseable
1030          */
1031         public final function getParserInstance () {
1032                 return $this->parserInstance;
1033         }
1034
1035         /**
1036          * Setter for HandleableProtocol instance
1037          *
1038          * @param       $protocolInstance       An instance of an HandleableProtocol
1039          * @return      void
1040          */
1041         public final function setProtocolInstance (HandleableProtocol $protocolInstance = NULL) {
1042                 $this->protocolInstance = $protocolInstance;
1043         }
1044
1045         /**
1046          * Getter for HandleableProtocol instance
1047          *
1048          * @return      $protocolInstance       An instance of an HandleableProtocol
1049          */
1050         public final function getProtocolInstance () {
1051                 return $this->protocolInstance;
1052         }
1053
1054         /**
1055          * Setter for DatabaseWrapper instance
1056          *
1057          * @param       $wrapperInstance        An instance of an DatabaseWrapper
1058          * @return      void
1059          */
1060         public final function setWrapperInstance (DatabaseWrapper $wrapperInstance) {
1061                 $this->wrapperInstance = $wrapperInstance;
1062         }
1063
1064         /**
1065          * Getter for DatabaseWrapper instance
1066          *
1067          * @return      $wrapperInstance        An instance of an DatabaseWrapper
1068          */
1069         public final function getWrapperInstance () {
1070                 return $this->wrapperInstance;
1071         }
1072
1073         /**
1074          * Setter for socket resource
1075          *
1076          * @param       $socketResource         A valid socket resource
1077          * @return      void
1078          */
1079         public final function setSocketResource ($socketResource) {
1080                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': socketResource=' . $socketResource . ',previous[' . gettype($this->socketResource) . ']=' . $this->socketResource);
1081                 $this->socketResource = $socketResource;
1082         }
1083
1084         /**
1085          * Getter for socket resource
1086          *
1087          * @return      $socketResource         A valid socket resource
1088          */
1089         public final function getSocketResource () {
1090                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': socketResource[' . gettype($this->socketResource) . ']=' . $this->socketResource);
1091                 return $this->socketResource;
1092         }
1093
1094         /**
1095          * Setter for regular expression
1096          *
1097          * @param       $regularExpression      A valid regular expression
1098          * @return      void
1099          */
1100         public final function setRegularExpression ($regularExpression) {
1101                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': regularExpression=' . $regularExpression . ',previous[' . gettype($this->regularExpression) . ']=' . $this->regularExpression);
1102                 $this->regularExpression = $regularExpression;
1103         }
1104
1105         /**
1106          * Getter for regular expression
1107          *
1108          * @return      $regularExpression      A valid regular expression
1109          */
1110         public final function getRegularExpression () {
1111                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': regularExpression[' . gettype($this->regularExpression) . ']=' . $this->regularExpression);
1112                 return $this->regularExpression;
1113         }
1114
1115         /**
1116          * Setter for helper instance
1117          *
1118          * @param       $helperInstance         An instance of a helper class
1119          * @return      void
1120          */
1121         protected final function setHelperInstance (Helper $helperInstance) {
1122                 $this->helperInstance = $helperInstance;
1123         }
1124
1125         /**
1126          * Getter for helper instance
1127          *
1128          * @return      $helperInstance         An instance of a helper class
1129          */
1130         public final function getHelperInstance () {
1131                 return $this->helperInstance;
1132         }
1133
1134         /**
1135          * Setter for a Sourceable instance
1136          *
1137          * @param       $sourceInstance         An instance of a Sourceable class
1138          * @return      void
1139          */
1140         protected final function setSourceInstance (Sourceable $sourceInstance) {
1141                 $this->sourceInstance = $sourceInstance;
1142         }
1143
1144         /**
1145          * Getter for a Sourceable instance
1146          *
1147          * @return      $sourceInstance         An instance of a Sourceable class
1148          */
1149         protected final function getSourceInstance () {
1150                 return $this->sourceInstance;
1151         }
1152
1153         /**
1154          * Setter for a UrlSource instance
1155          *
1156          * @param       $sourceInstance         An instance of a UrlSource class
1157          * @return      void
1158          */
1159         protected final function setUrlSourceInstance (UrlSource $urlSourceInstance) {
1160                 $this->urlSourceInstance = $urlSourceInstance;
1161         }
1162
1163         /**
1164          * Getter for a UrlSource instance
1165          *
1166          * @return      $urlSourceInstance              An instance of a UrlSource class
1167          */
1168         protected final function getUrlSourceInstance () {
1169                 return $this->urlSourceInstance;
1170         }
1171
1172         /**
1173          * Getter for a InputStream instance
1174          *
1175          * @param       $inputStreamInstance    The InputStream instance
1176          */
1177         protected final function getInputStreamInstance () {
1178                 return $this->inputStreamInstance;
1179         }
1180
1181         /**
1182          * Setter for a InputStream instance
1183          *
1184          * @param       $inputStreamInstance    The InputStream instance
1185          * @return      void
1186          */
1187         protected final function setInputStreamInstance (InputStream $inputStreamInstance) {
1188                 $this->inputStreamInstance = $inputStreamInstance;
1189         }
1190
1191         /**
1192          * Getter for a OutputStream instance
1193          *
1194          * @param       $outputStreamInstance   The OutputStream instance
1195          */
1196         protected final function getOutputStreamInstance () {
1197                 return $this->outputStreamInstance;
1198         }
1199
1200         /**
1201          * Setter for a OutputStream instance
1202          *
1203          * @param       $outputStreamInstance   The OutputStream instance
1204          * @return      void
1205          */
1206         protected final function setOutputStreamInstance (OutputStream $outputStreamInstance) {
1207                 $this->outputStreamInstance = $outputStreamInstance;
1208         }
1209
1210         /**
1211          * Setter for handler instance
1212          *
1213          * @param       $handlerInstance        An instance of a Handleable class
1214          * @return      void
1215          */
1216         protected final function setHandlerInstance (Handleable $handlerInstance) {
1217                 $this->handlerInstance = $handlerInstance;
1218         }
1219
1220         /**
1221          * Getter for handler instance
1222          *
1223          * @return      $handlerInstance        A Networkable instance
1224          */
1225         protected final function getHandlerInstance () {
1226                 return $this->handlerInstance;
1227         }
1228
1229         /**
1230          * Setter for visitor instance
1231          *
1232          * @param       $visitorInstance        A Visitor instance
1233          * @return      void
1234          */
1235         protected final function setVisitorInstance (Visitor $visitorInstance) {
1236                 $this->visitorInstance = $visitorInstance;
1237         }
1238
1239         /**
1240          * Getter for visitor instance
1241          *
1242          * @return      $visitorInstance        A Visitor instance
1243          */
1244         protected final function getVisitorInstance () {
1245                 return $this->visitorInstance;
1246         }
1247
1248         /**
1249          * Setter for DHT instance
1250          *
1251          * @param       $dhtInstance    A Distributable instance
1252          * @return      void
1253          */
1254         protected final function setDhtInstance (Distributable $dhtInstance) {
1255                 $this->dhtInstance = $dhtInstance;
1256         }
1257
1258         /**
1259          * Getter for DHT instance
1260          *
1261          * @return      $dhtInstance    A Distributable instance
1262          */
1263         protected final function getDhtInstance () {
1264                 return $this->dhtInstance;
1265         }
1266
1267         /**
1268          * Setter for raw package Data
1269          *
1270          * @param       $packageData    Raw package Data
1271          * @return      void
1272          */
1273         public final function setPackageData (array $packageData) {
1274                 $this->packageData = $packageData;
1275         }
1276
1277         /**
1278          * Getter for raw package Data
1279          *
1280          * @return      $packageData    Raw package Data
1281          */
1282         public function getPackageData () {
1283                 return $this->packageData;
1284         }
1285
1286
1287         /**
1288          * Setter for Iterator instance
1289          *
1290          * @param       $iteratorInstance       An instance of an Iterator
1291          * @return      void
1292          */
1293         protected final function setIteratorInstance (Iterator $iteratorInstance) {
1294                 $this->iteratorInstance = $iteratorInstance;
1295         }
1296
1297         /**
1298          * Getter for Iterator instance
1299          *
1300          * @return      $iteratorInstance       An instance of an Iterator
1301          */
1302         public final function getIteratorInstance () {
1303                 return $this->iteratorInstance;
1304         }
1305
1306         /**
1307          * Setter for FilePointer instance
1308          *
1309          * @param       $pointerInstance        An instance of an FilePointer class
1310          * @return      void
1311          */
1312         protected final function setPointerInstance (FilePointer $pointerInstance) {
1313                 $this->pointerInstance = $pointerInstance;
1314         }
1315
1316         /**
1317          * Getter for FilePointer instance
1318          *
1319          * @return      $pointerInstance        An instance of an FilePointer class
1320          */
1321         public final function getPointerInstance () {
1322                 return $this->pointerInstance;
1323         }
1324
1325         /**
1326          * Setter for Indexable instance
1327          *
1328          * @param       $indexInstance  An instance of an Indexable class
1329          * @return      void
1330          */
1331         protected final function setIndexInstance (Indexable $indexInstance) {
1332                 $this->indexInstance = $indexInstance;
1333         }
1334
1335         /**
1336          * Getter for Indexable instance
1337          *
1338          * @return      $indexInstance  An instance of an Indexable class
1339          */
1340         public final function getIndexInstance () {
1341                 return $this->indexInstance;
1342         }
1343
1344         /**
1345          * Setter for Block instance
1346          *
1347          * @param       $blockInstance  An instance of an Block class
1348          * @return      void
1349          */
1350         protected final function setBlockInstance (Block $blockInstance) {
1351                 $this->blockInstance = $blockInstance;
1352         }
1353
1354         /**
1355          * Getter for Block instance
1356          *
1357          * @return      $blockInstance  An instance of an Block class
1358          */
1359         public final function getBlockInstance () {
1360                 return $this->blockInstance;
1361         }
1362
1363         /**
1364          * Setter for Minable instance
1365          *
1366          * @param       $minableInstance        A Minable instance
1367          * @return      void
1368          */
1369         protected final function setMinableInstance (Minable $minableInstance) {
1370                 $this->minableInstance = $minableInstance;
1371         }
1372
1373         /**
1374          * Getter for minable instance
1375          *
1376          * @return      $minableInstance        A Minable instance
1377          */
1378         protected final function getMinableInstance () {
1379                 return $this->minableInstance;
1380         }
1381
1382         /**
1383          * Setter for FrameworkDirectory instance
1384          *
1385          * @param       $directoryInstance      A FrameworkDirectoryPointer instance
1386          * @return      void
1387          */
1388         protected final function setDirectoryInstance (FrameworkDirectory $directoryInstance) {
1389                 $this->directoryInstance = $directoryInstance;
1390         }
1391
1392         /**
1393          * Getter for FrameworkDirectory instance
1394          *
1395          * @return      $directoryInstance      A FrameworkDirectory instance
1396          */
1397         protected final function getDirectoryInstance () {
1398                 return $this->directoryInstance;
1399         }
1400
1401         /**
1402          * Setter for listener instance
1403          *
1404          * @param       $listenerInstance       A Listenable instance
1405          * @return      void
1406          */
1407         protected final function setListenerInstance (Listenable $listenerInstance) {
1408                 $this->listenerInstance = $listenerInstance;
1409         }
1410
1411         /**
1412          * Getter for listener instance
1413          *
1414          * @return      $listenerInstance       A Listenable instance
1415          */
1416         protected final function getListenerInstance () {
1417                 return $this->listenerInstance;
1418         }
1419
1420         /**
1421          * Checks whether an object equals this object. You should overwrite this
1422          * method to implement own equality checks
1423          *
1424          * @param       $objectInstance         An instance of a FrameworkInterface object
1425          * @return      $equals                         Whether both objects equals
1426          */
1427         public function equals (FrameworkInterface $objectInstance) {
1428                 // Now test it
1429                 $equals = ((
1430                         $this->__toString() == $objectInstance->__toString()
1431                 ) && (
1432                         $this->hashCode() == $objectInstance->hashCode()
1433                 ));
1434
1435                 // Return the result
1436                 return $equals;
1437         }
1438
1439         /**
1440          * Generates a generic hash code of this class. You should really overwrite
1441          * this method with your own hash code generator code. But keep KISS in mind.
1442          *
1443          * @return      $hashCode       A generic hash code respresenting this whole class
1444          */
1445         public function hashCode () {
1446                 // Simple hash code
1447                 return crc32($this->__toString());
1448         }
1449
1450         /**
1451          * Formats computer generated price values into human-understandable formats
1452          * with thousand and decimal separators.
1453          *
1454          * @param       $value          The in computer format value for a price
1455          * @param       $currency       The currency symbol (use HTML-valid characters!)
1456          * @param       $decNum         Number of decimals after commata
1457          * @return      $price          The for the current language formated price string
1458          * @throws      MissingDecimalsThousandsSeparatorException      If decimals or
1459          *                                                                                              thousands separator
1460          *                                                                                              is missing
1461          */
1462         public function formatCurrency ($value, $currency = '&euro;', $decNum = 2) {
1463                 // Are all required attriutes set?
1464                 if ((!isset($this->decimals)) || (!isset($this->thousands))) {
1465                         // Throw an exception
1466                         throw new MissingDecimalsThousandsSeparatorException($this, self::EXCEPTION_ATTRIBUTES_ARE_MISSING);
1467                 } // END - if
1468
1469                 // Cast the number
1470                 $value = (float) $value;
1471
1472                 // Reformat the US number
1473                 $price = number_format($value, $decNum, $this->decimals, $this->thousands) . $currency;
1474
1475                 // Return as string...
1476                 return $price;
1477         }
1478
1479         /**
1480          * Appends a trailing slash to a string
1481          *
1482          * @param       $str    A string (maybe) without trailing slash
1483          * @return      $str    A string with an auto-appended trailing slash
1484          */
1485         public final function addMissingTrailingSlash ($str) {
1486                 // Is there a trailing slash?
1487                 if (substr($str, -1, 1) != '/') {
1488                         $str .= '/';
1489                 } // END - if
1490
1491                 // Return string with trailing slash
1492                 return $str;
1493         }
1494
1495         /**
1496          * Prepare the template engine (WebTemplateEngine by default) for a given
1497          * application helper instance (ApplicationHelper by default).
1498          *
1499          * @param               $applicationInstance    An application helper instance or
1500          *                                                                              null if we shall use the default
1501          * @return              $templateInstance               The template engine instance
1502          * @throws              NullPointerException    If the discovered application
1503          *                                                                              instance is still null
1504          */
1505         protected function prepareTemplateInstance (ManageableApplication $applicationInstance = NULL) {
1506                 // Is the application instance set?
1507                 if (is_null($applicationInstance)) {
1508                         // Get the current instance
1509                         $applicationInstance = $this->getApplicationInstance();
1510
1511                         // Still null?
1512                         if (is_null($applicationInstance)) {
1513                                 // Thrown an exception
1514                                 throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
1515                         } // END - if
1516                 } // END - if
1517
1518                 // Initialize the template engine
1519                 $templateInstance = ObjectFactory::createObjectByConfiguredName('web_template_class');
1520
1521                 // Return the prepared instance
1522                 return $templateInstance;
1523         }
1524
1525         /**
1526          * Debugs this instance by putting out it's full content
1527          *
1528          * @param       $message        Optional message to show in debug output
1529          * @return      void
1530          */
1531         public final function debugInstance ($message = '') {
1532                 // Restore the error handler to avoid trouble with missing array elements or undeclared variables
1533                 restore_error_handler();
1534
1535                 // Init content
1536                 $content = '';
1537
1538                 // Is a message set?
1539                 if (!empty($message)) {
1540                         // Construct message
1541                         $content = sprintf('<div class="debug_message">Message: %s</div>' . PHP_EOL, $message);
1542                 } // END - if
1543
1544                 // Generate the output
1545                 $content .= sprintf('<pre>%s</pre>',
1546                         trim(
1547                                 htmlentities(
1548                                         print_r($this, TRUE)
1549                                 )
1550                         )
1551                 );
1552
1553                 // Output it
1554                 ApplicationEntryPoint::app_exit(sprintf('<div class="debug_header">%s debug output:</div><div class="debug_content">%s</div>Loaded includes: <div class="debug_include_list">%s</div>',
1555                         $this->__toString(),
1556                         $content,
1557                         ClassLoader::getSelfInstance()->getPrintableIncludeList()
1558                 ));
1559         }
1560
1561         /**
1562          * Replaces control characters with printable output
1563          *
1564          * @param       $str    String with control characters
1565          * @return      $str    Replaced string
1566          */
1567         protected function replaceControlCharacters ($str) {
1568                 // Replace them
1569                 $str = str_replace(
1570                         chr(13), '[r]', str_replace(
1571                         chr(10), '[n]', str_replace(
1572                         chr(9) , '[t]',
1573                         $str
1574                 )));
1575
1576                 // Return it
1577                 return $str;
1578         }
1579
1580         /**
1581          * Output a partial stub message for the caller method
1582          *
1583          * @param       $message        An optional message to display
1584          * @return      void
1585          */
1586         protected function partialStub ($message = '') {
1587                 // Get the backtrace
1588                 $backtrace = debug_backtrace();
1589
1590                 // Generate the class::method string
1591                 $methodName = 'UnknownClass-&gt;unknownMethod';
1592                 if ((isset($backtrace[1]['class'])) && (isset($backtrace[1]['function']))) {
1593                         $methodName = $backtrace[1]['class'] . '-&gt;' . $backtrace[1]['function'];
1594                 } // END - if
1595
1596                 // Construct the full message
1597                 $stubMessage = sprintf('[%s:] Partial stub!',
1598                         $methodName
1599                 );
1600
1601                 // Is the extra message given?
1602                 if (!empty($message)) {
1603                         // Then add it as well
1604                         $stubMessage .= ' Message: ' . $message;
1605                 } // END - if
1606
1607                 // Debug instance is there?
1608                 if (!is_null($this->getDebugInstance())) {
1609                         // Output stub message
1610                         self::createDebugInstance(__CLASS__)->debugOutput($stubMessage);
1611                 } else {
1612                         // Trigger an error
1613                         trigger_error($stubMessage);
1614                         exit;
1615                 }
1616         }
1617
1618         /**
1619          * Outputs a debug backtrace and stops further script execution
1620          *
1621          * @param       $message        An optional message to output
1622          * @param       $doExit         Whether exit the program (TRUE is default)
1623          * @return      void
1624          */
1625         public function debugBackTrace ($message = '', $doExit = TRUE) {
1626                 // Sorry, there is no other way getting this nice backtrace
1627                 if (!empty($message)) {
1628                         // Output message
1629                         printf('Message: %s<br />' . chr(10), $message);
1630                 } // END - if
1631
1632                 print('<pre>');
1633                 debug_print_backtrace();
1634                 print('</pre>');
1635
1636                 // Exit program?
1637                 if ($doExit === TRUE) {
1638                         exit();
1639                 } // END - if
1640         }
1641
1642         /**
1643          * Creates an instance of a debugger instance
1644          *
1645          * @param       $className              Name of the class (currently unsupported)
1646          * @return      $debugInstance  An instance of a debugger class
1647          */
1648         public final static function createDebugInstance ($className) {
1649                 // Is the instance set?
1650                 if (!Registry::getRegistry()->instanceExists('debug')) {
1651                         // Init debug instance
1652                         $debugInstance = NULL;
1653
1654                         // Try it
1655                         try {
1656                                 // Get a debugger instance
1657                                 $debugInstance = DebugMiddleware::createDebugMiddleware(FrameworkConfiguration::getSelfInstance()->getConfigEntry('debug_class'));
1658                         } catch (NullPointerException $e) {
1659                                 // Didn't work, no instance there
1660                                 exit('Cannot create debugInstance! Exception=' . $e->__toString() . ', message=' . $e->getMessage());
1661                         }
1662
1663                         // Empty string should be ignored and used for testing the middleware
1664                         DebugMiddleware::getSelfInstance()->output('');
1665
1666                         // Set it in its own class. This will set it in the registry
1667                         $debugInstance->setDebugInstance($debugInstance);
1668                 } else {
1669                         // Get instance from registry
1670                         $debugInstance = Registry::getRegistry()->getDebugInstance();
1671                 }
1672
1673                 // Return it
1674                 return $debugInstance;
1675         }
1676
1677         /**
1678          * Simple output of a message with line-break
1679          *
1680          * @param       $message        Message to output
1681          * @return      void
1682          */
1683         public function outputLine ($message) {
1684                 // Simply output it
1685                 print($message . PHP_EOL);
1686         }
1687
1688         /**
1689          * Outputs a debug message whether to debug instance (should be set!) or
1690          * dies with or ptints the message. Do NEVER EVER rewrite the exit() call to
1691          * ApplicationEntryPoint::app_exit(), this would cause an endless loop.
1692          *
1693          * @param       $message        Message we shall send out...
1694          * @param       $doPrint        Whether print or die here (default: print)
1695          * @paran       $stripTags      Whether to strip tags (default: FALSE)
1696          * @return      void
1697          */
1698         public function debugOutput ($message, $doPrint = TRUE, $stripTags = FALSE) {
1699                 // Set debug instance to NULL
1700                 $debugInstance = NULL;
1701
1702                 // Try it:
1703                 try {
1704                         // Get debug instance
1705                         $debugInstance = $this->getDebugInstance();
1706                 } catch (NullPointerException $e) {
1707                         // The debug instance is not set (yet)
1708                 }
1709
1710                 // Is the debug instance there?
1711                 if (is_object($debugInstance)) {
1712                         // Use debug output handler
1713                         $debugInstance->output($message, $stripTags);
1714
1715                         if ($doPrint === FALSE) {
1716                                 // Die here if not printed
1717                                 exit();
1718                         } // END - if
1719                 } else {
1720                         // Are debug times enabled?
1721                         if ($this->getConfigInstance()->getConfigEntry('debug_output_timings') == 'Y') {
1722                                 // Prepent it
1723                                 $message = $this->getPrintableExecutionTime() . $message;
1724                         } // END - if
1725
1726                         // Put directly out
1727                         if ($doPrint === TRUE) {
1728                                 // Print message
1729                                 $this->outputLine($message);
1730                         } else {
1731                                 // Die here
1732                                 exit($message);
1733                         }
1734                 }
1735         }
1736
1737         /**
1738          * Converts e.g. a command from URL to a valid class by keeping out bad characters
1739          *
1740          * @param       $str            The string, what ever it is needs to be converted
1741          * @return      $className      Generated class name
1742          */
1743         public function convertToClassName ($str) {
1744                 // Init class name
1745                 $className = '';
1746
1747                 // Convert all dashes in underscores
1748                 $str = $this->convertDashesToUnderscores($str);
1749
1750                 // Now use that underscores to get classname parts for hungarian style
1751                 foreach (explode('_', $str) as $strPart) {
1752                         // Make the class name part lower case and first upper case
1753                         $className .= ucfirst(strtolower($strPart));
1754                 } // END - foreach
1755
1756                 // Return class name
1757                 return $className;
1758         }
1759
1760         /**
1761          * Converts dashes to underscores, e.g. useable for configuration entries
1762          *
1763          * @param       $str    The string with maybe dashes inside
1764          * @return      $str    The converted string with no dashed, but underscores
1765          */
1766         public final function convertDashesToUnderscores ($str) {
1767                 // Convert them all
1768                 $str = str_replace('-', '_', $str);
1769
1770                 // Return converted string
1771                 return $str;
1772         }
1773
1774         /**
1775          * Marks up the code by adding e.g. line numbers
1776          *
1777          * @param       $phpCode                Unmarked PHP code
1778          * @return      $markedCode             Marked PHP code
1779          */
1780         public function markupCode ($phpCode) {
1781                 // Init marked code
1782                 $markedCode = '';
1783
1784                 // Get last error
1785                 $errorArray = error_get_last();
1786
1787                 // Init the code with error message
1788                 if (is_array($errorArray)) {
1789                         // Get error infos
1790                         $markedCode = sprintf('<div id="error_header">File: <span id="error_data">%s</span>, Line: <span id="error_data">%s</span>, Message: <span id="error_data">%s</span>, Type: <span id="error_data">%s</span></div>',
1791                                 basename($errorArray['file']),
1792                                 $errorArray['line'],
1793                                 $errorArray['message'],
1794                                 $errorArray['type']
1795                         );
1796                 } // END - if
1797
1798                 // Add line number to the code
1799                 foreach (explode(chr(10), $phpCode) as $lineNo => $code) {
1800                         // Add line numbers
1801                         $markedCode .= sprintf('<span id="code_line">%s</span>: %s' . chr(10),
1802                                 ($lineNo + 1),
1803                                 htmlentities($code, ENT_QUOTES)
1804                         );
1805                 } // END - foreach
1806
1807                 // Return the code
1808                 return $markedCode;
1809         }
1810
1811         /**
1812          * Filter a given GMT timestamp (non Uni* stamp!) to make it look more
1813          * beatiful for web-based front-ends. If null is given a message id
1814          * null_timestamp will be resolved and returned.
1815          *
1816          * @param       $timestamp      Timestamp to prepare (filter) for display
1817          * @return      $readable       A readable timestamp
1818          */
1819         public function doFilterFormatTimestamp ($timestamp) {
1820                 // Default value to return
1821                 $readable = '???';
1822
1823                 // Is the timestamp null?
1824                 if (is_null($timestamp)) {
1825                         // Get a message string
1826                         $readable = $this->getLanguageInstance()->getMessage('null_timestamp');
1827                 } else {
1828                         switch ($this->getLanguageInstance()->getLanguageCode()) {
1829                                 case 'de': // German format is a bit different to default
1830                                         // Split the GMT stamp up
1831                                         $dateTime  = explode(' ', $timestamp  );
1832                                         $dateArray = explode('-', $dateTime[0]);
1833                                         $timeArray = explode(':', $dateTime[1]);
1834
1835                                         // Construct the timestamp
1836                                         $readable = sprintf($this->getConfigInstance()->getConfigEntry('german_date_time'),
1837                                                 $dateArray[0],
1838                                                 $dateArray[1],
1839                                                 $dateArray[2],
1840                                                 $timeArray[0],
1841                                                 $timeArray[1],
1842                                                 $timeArray[2]
1843                                         );
1844                                         break;
1845
1846                                 default: // Default is pass-through
1847                                         $readable = $timestamp;
1848                                         break;
1849                         } // END - switch
1850                 }
1851
1852                 // Return the stamp
1853                 return $readable;
1854         }
1855
1856         /**
1857          * Filter a given number into a localized number
1858          *
1859          * @param       $value          The raw value from e.g. database
1860          * @return      $localized      Localized value
1861          */
1862         public function doFilterFormatNumber ($value) {
1863                 // Generate it from config and localize dependencies
1864                 switch ($this->getLanguageInstance()->getLanguageCode()) {
1865                         case 'de': // German format is a bit different to default
1866                                 $localized = number_format($value, $this->getConfigInstance()->getConfigEntry('decimals'), ',', '.');
1867                                 break;
1868
1869                         default: // US, etc.
1870                                 $localized = number_format($value, $this->getConfigInstance()->getConfigEntry('decimals'), '.', ',');
1871                                 break;
1872                 } // END - switch
1873
1874                 // Return it
1875                 return $localized;
1876         }
1877
1878         /**
1879          * "Getter" for databse entry
1880          *
1881          * @return      $entry  An array with database entries
1882          * @throws      NullPointerException    If the database result is not found
1883          * @throws      InvalidDatabaseResultException  If the database result is invalid
1884          */
1885         protected final function getDatabaseEntry () {
1886                 // Is there an instance?
1887                 if (is_null($this->getResultInstance())) {
1888                         // Throw an exception here
1889                         throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
1890                 } // END - if
1891
1892                 // Rewind it
1893                 $this->getResultInstance()->rewind();
1894
1895                 // Do we have an entry?
1896                 if ($this->getResultInstance()->valid() === FALSE) {
1897                         throw new InvalidDatabaseResultException(array($this, $this->getResultInstance()), DatabaseResult::EXCEPTION_INVALID_DATABASE_RESULT);
1898                 } // END - if
1899
1900                 // Get next entry
1901                 $this->getResultInstance()->next();
1902
1903                 // Fetch it
1904                 $entry = $this->getResultInstance()->current();
1905
1906                 // And return it
1907                 return $entry;
1908         }
1909
1910         /**
1911          * Getter for field name
1912          *
1913          * @param       $fieldName              Field name which we shall get
1914          * @return      $fieldValue             Field value from the user
1915          * @throws      NullPointerException    If the result instance is null
1916          */
1917         public final function getField ($fieldName) {
1918                 // Default field value
1919                 $fieldValue = NULL;
1920
1921                 // Get result instance
1922                 $resultInstance = $this->getResultInstance();
1923
1924                 // Is this instance null?
1925                 if (is_null($resultInstance)) {
1926                         // Then the user instance is no longer valid (expired cookies?)
1927                         throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
1928                 } // END - if
1929
1930                 // Get current array
1931                 $fieldArray = $resultInstance->current();
1932                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput($fieldName.':<pre>'.print_r($fieldArray, TRUE).'</pre>');
1933
1934                 // Convert dashes to underscore
1935                 $fieldName = $this->convertDashesToUnderscores($fieldName);
1936
1937                 // Does the field exist?
1938                 if (isset($fieldArray[$fieldName])) {
1939                         // Get it
1940                         $fieldValue = $fieldArray[$fieldName];
1941                 } else {
1942                         // Missing field entry, may require debugging
1943                         self::createDebugInstance(__CLASS__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . ']:fieldName=' . $fieldName . ' not found!');
1944                 }
1945
1946                 // Return it
1947                 return $fieldValue;
1948         }
1949
1950         /**
1951          * Flushs all pending updates to the database layer
1952          *
1953          * @return      void
1954          */
1955         public function flushPendingUpdates () {
1956                 // Get result instance
1957                 $resultInstance = $this->getResultInstance();
1958
1959                 // Do we have data to update?
1960                 if ((is_object($resultInstance)) && ($resultInstance->ifDataNeedsFlush())) {
1961                         // Get wrapper class name config entry
1962                         $configEntry = $resultInstance->getUpdateInstance()->getWrapperConfigEntry();
1963
1964                         // Create object instance
1965                         $wrapperInstance = ObjectFactory::createObjectByConfiguredName($configEntry);
1966
1967                         // Yes, then send the whole result to the database layer
1968                         $wrapperInstance->doUpdateByResult($this->getResultInstance());
1969                 } // END - if
1970         }
1971
1972         /**
1973          * Outputs a deprecation warning to the developer.
1974          *
1975          * @param       $message        The message we shall output to the developer
1976          * @return      void
1977          * @todo        Write a logging mechanism for productive mode
1978          */
1979         public function deprecationWarning ($message) {
1980                 // Is developer mode active?
1981                 if (defined('DEVELOPER')) {
1982                         // Debug instance is there?
1983                         if (!is_null($this->getDebugInstance())) {
1984                                 // Output stub message
1985                                 self::createDebugInstance(__CLASS__)->debugOutput($message);
1986                         } else {
1987                                 // Trigger an error
1988                                 trigger_error($message . "<br />\n");
1989                                 exit;
1990                         }
1991                 } else {
1992                         // @TODO Finish this part!
1993                         $this->partialStub('Developer mode inactive. Message:' . $message);
1994                 }
1995         }
1996
1997         /**
1998          * Checks whether the given PHP extension is loaded
1999          *
2000          * @param       $phpExtension   The PHP extension we shall check
2001          * @return      $isLoaded       Whether the PHP extension is loaded
2002          */
2003         public final function isPhpExtensionLoaded ($phpExtension) {
2004                 // Is it loaded?
2005                 $isLoaded = in_array($phpExtension, get_loaded_extensions());
2006
2007                 // Return result
2008                 return $isLoaded;
2009         }
2010
2011         /**
2012          * "Getter" as a time() replacement but with milliseconds. You should use this
2013          * method instead of the encapsulated getimeofday() function.
2014          *
2015          * @return      $milliTime      Timestamp with milliseconds
2016          */
2017         public function getMilliTime () {
2018                 // Get the time of day as float
2019                 $milliTime = gettimeofday(TRUE);
2020
2021                 // Return it
2022                 return $milliTime;
2023         }
2024
2025         /**
2026          * Idles (sleeps) for given milliseconds
2027          *
2028          * @return      $hasSlept       Whether it goes fine
2029          */
2030         public function idle ($milliSeconds) {
2031                 // Sleep is fine by default
2032                 $hasSlept = TRUE;
2033
2034                 // Idle so long with found function
2035                 if (function_exists('time_sleep_until')) {
2036                         // Get current time and add idle time
2037                         $sleepUntil = $this->getMilliTime() + abs($milliSeconds) / 1000;
2038
2039                         // New PHP 5.1.0 function found, ignore errors
2040                         $hasSlept = @time_sleep_until($sleepUntil);
2041                 } else {
2042                         /*
2043                          * My Sun station doesn't have that function even with latest PHP
2044                          * package. :(
2045                          */
2046                         usleep($milliSeconds * 1000);
2047                 }
2048
2049                 // Return result
2050                 return $hasSlept;
2051         }
2052         /**
2053          * Converts a hexadecimal string, even with negative sign as first string to
2054          * a decimal number using BC functions.
2055          *
2056          * This work is based on comment #86673 on php.net documentation page at:
2057          * <http://de.php.net/manual/en/function.dechex.php#86673>
2058          *
2059          * @param       $hex    Hexadecimal string
2060          * @return      $dec    Decimal number
2061          */
2062         protected function hex2dec ($hex) {
2063                 // Convert to all lower-case
2064                 $hex = strtolower($hex);
2065
2066                 // Detect sign (negative/positive numbers)
2067                 $sign = '';
2068                 if (substr($hex, 0, 1) == '-') {
2069                         $sign = '-';
2070                         $hex = substr($hex, 1);
2071                 } // END - if
2072
2073                 // Decode the hexadecimal string into a decimal number
2074                 $dec = 0;
2075                 for ($i = strlen($hex) - 1, $e = 1; $i >= 0; $i--, $e = bcmul($e, 16)) {
2076                         $factor = self::$hexdec[substr($hex, $i, 1)];
2077                         $dec = bcadd($dec, bcmul($factor, $e));
2078                 } // END - for
2079
2080                 // Return the decimal number
2081                 return $sign . $dec;
2082         }
2083
2084         /**
2085          * Converts even very large decimal numbers, also signed, to a hexadecimal
2086          * string.
2087          *
2088          * This work is based on comment #97756 on php.net documentation page at:
2089          * <http://de.php.net/manual/en/function.hexdec.php#97756>
2090          *
2091          * @param       $dec            Decimal number, even with negative sign
2092          * @param       $maxLength      Optional maximum length of the string
2093          * @return      $hex    Hexadecimal string
2094          */
2095         protected function dec2hex ($dec, $maxLength = 0) {
2096                 // maxLength can be zero or devideable by 2
2097                 assert(($maxLength == 0) || (($maxLength % 2) == 0));
2098
2099                 // Detect sign (negative/positive numbers)
2100                 $sign = '';
2101                 if ($dec < 0) {
2102                         $sign = '-';
2103                         $dec = abs($dec);
2104                 } // END - if
2105
2106                 // Encode the decimal number into a hexadecimal string
2107                 $hex = '';
2108                 do {
2109                         $hex = self::$dechex[($dec % (2 ^ 4))] . $hex;
2110                         $dec /= (2 ^ 4);
2111                 } while ($dec >= 1);
2112
2113                 /*
2114                  * Leading zeros are required for hex-decimal "numbers". In some
2115                  * situations more leading zeros are wanted, so check for both
2116                  * conditions.
2117                  */
2118                 if ($maxLength > 0) {
2119                         // Prepend more zeros
2120                         $hex = str_pad($hex, $maxLength, '0', STR_PAD_LEFT);
2121                 } elseif ((strlen($hex) % 2) != 0) {
2122                         // Only make string's length dividable by 2
2123                         $hex = '0' . $hex;
2124                 }
2125
2126                 // Return the hexadecimal string
2127                 return $sign . $hex;
2128         }
2129
2130         /**
2131          * Converts a ASCII string (0 to 255) into a decimal number.
2132          *
2133          * @param       $asc    The ASCII string to be converted
2134          * @return      $dec    Decimal number
2135          */
2136         protected function asc2dec ($asc) {
2137                 // Convert it into a hexadecimal number
2138                 $hex = bin2hex($asc);
2139
2140                 // And back into a decimal number
2141                 $dec = $this->hex2dec($hex);
2142
2143                 // Return it
2144                 return $dec;
2145         }
2146
2147         /**
2148          * Converts a decimal number into an ASCII string.
2149          *
2150          * @param       $dec            Decimal number
2151          * @return      $asc    An ASCII string
2152          */
2153         protected function dec2asc ($dec) {
2154                 // First convert the number into a hexadecimal string
2155                 $hex = $this->dec2hex($dec);
2156
2157                 // Then convert it into the ASCII string
2158                 $asc = $this->hex2asc($hex);
2159
2160                 // Return it
2161                 return $asc;
2162         }
2163
2164         /**
2165          * Converts a hexadecimal number into an ASCII string. Negative numbers
2166          * are not allowed.
2167          *
2168          * @param       $hex    Hexadecimal string
2169          * @return      $asc    An ASCII string
2170          */
2171         protected function hex2asc ($hex) {
2172                 // Check for length, it must be devideable by 2
2173                 //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('hex='.$hex);
2174                 assert((strlen($hex) % 2) == 0);
2175
2176                 // Walk the string
2177                 $asc = '';
2178                 for ($idx = 0; $idx < strlen($hex); $idx+=2) {
2179                         // Get the decimal number of the chunk
2180                         $part = hexdec(substr($hex, $idx, 2));
2181
2182                         // Add it to the final string
2183                         $asc .= chr($part);
2184                 } // END - for
2185
2186                 // Return the final string
2187                 return $asc;
2188         }
2189
2190         /**
2191          * Checks whether the given encoded data was encoded with Base64
2192          *
2193          * @param       $encodedData    Encoded data we shall check
2194          * @return      $isBase64               Whether the encoded data is Base64
2195          */
2196         protected function isBase64Encoded ($encodedData) {
2197                 // Determine it
2198                 $isBase64 = (@base64_decode($encodedData, TRUE) !== FALSE);
2199
2200                 // Return it
2201                 return $isBase64;
2202         }
2203
2204         /**
2205          * "Getter" to get response/request type from analysis of the system.
2206          *
2207          * @return      $responseType   Analyzed response type
2208          */
2209         protected function getResponseTypeFromSystem () {
2210                 // Default is console
2211                 $responseType = 'console';
2212
2213                 // Is 'HTTP_HOST' set?
2214                 if (isset($_SERVER['HTTP_HOST'])) {
2215                         // Then it is a HTTP response/request
2216                         $responseType = 'http';
2217                 } // END - if
2218
2219                 // Return it
2220                 return $responseType;
2221         }
2222
2223         /**
2224          * Gets a cache key from Criteria instance
2225          *
2226          * @param       $criteriaInstance       An instance of a Criteria class
2227          * @param       $onlyKeys                       Only use these keys for a cache key
2228          * @return      $cacheKey                       A cache key suitable for lookup/storage purposes
2229          */
2230         protected function getCacheKeyByCriteria (Criteria $criteriaInstance, array $onlyKeys = array()) {
2231                 // Generate it
2232                 $cacheKey = sprintf('%s@%s',
2233                         $this->__toString(),
2234                         $criteriaInstance->getCacheKey($onlyKeys)
2235                 );
2236
2237                 // And return it
2238                 //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput($this->__toString() . ': cacheKey=' . $cacheKey);
2239                 return $cacheKey;
2240         }
2241
2242         /**
2243          * Getter for startup time in miliseconds
2244          *
2245          * @return      $startupTime    Startup time in miliseconds
2246          */
2247         protected function getStartupTime () {
2248                 return self::$startupTime;
2249         }
2250
2251         /**
2252          * "Getter" for a printable currently execution time in nice braces
2253          *
2254          * @return      $executionTime  Current execution time in nice braces
2255          */
2256         protected function getPrintableExecutionTime () {
2257                 // Caculate the execution time
2258                 $executionTime = microtime(TRUE) - $this->getStartupTime();
2259
2260                 // Pack it in nice braces
2261                 $executionTime = sprintf('[ %01.5f ] ', $executionTime);
2262
2263                 // And return it
2264                 return $executionTime;
2265         }
2266
2267         /**
2268          * Hashes a given string with a simple but stronger hash function (no salt)
2269          * and hex-encode it.
2270          *
2271          * @param       $str    The string to be hashed
2272          * @return      $hash   The hash from string $str
2273          */
2274         public static final function hash ($str) {
2275                 // Hash given string with (better secure) hasher
2276                 $hash = bin2hex(mhash(MHASH_SHA256, $str));
2277
2278                 // Return it
2279                 return $hash;
2280         }
2281
2282         /**
2283          * "Getter" for length of hash() output. This will be "cached" to speed up
2284          * things.
2285          *
2286          * @return      $length         Length of hash() output
2287          */
2288         public static final function getHashLength () {
2289                 // Is it cashed?
2290                 if (is_null(self::$hashLength)) {
2291                         // No, then hash a string and save its length.
2292                         self::$hashLength = strlen(self::hash('abc123'));
2293                 } // END - if
2294
2295                 // Return it
2296                 return self::$hashLength;
2297         }
2298
2299         /**
2300          * Checks whether the given number is really a number (only chars 0-9).
2301          *
2302          * @param       $num            A string consisting only chars between 0 and 9
2303          * @param       $castValue      Whether to cast the value to double. Do only use this to secure numbers from Requestable classes.
2304          * @param       $assertMismatch         Whether to assert mismatches
2305          * @return      $ret            The (hopefully) secured numbered value
2306          */
2307         public function bigintval ($num, $castValue = TRUE, $assertMismatch = FALSE) {
2308                 // Filter all numbers out
2309                 $ret = preg_replace('/[^0123456789]/', '', $num);
2310
2311                 // Shall we cast?
2312                 if ($castValue === TRUE) {
2313                         // Cast to biggest numeric type
2314                         $ret = (double) $ret;
2315                 } // END - if
2316
2317                 // Assert only if requested
2318                 if ($assertMismatch === TRUE) {
2319                         // Has the whole value changed?
2320                         assert(('' . $ret . '' != '' . $num . '') && (!is_null($num)));
2321                 } // END - if
2322
2323                 // Return result
2324                 return $ret;
2325         }
2326
2327         /**
2328          * Checks whether the given hexadecimal number is really a hex-number (only chars 0-9,a-f).
2329          *
2330          * @param       $num    A string consisting only chars between 0 and 9
2331          * @param       $assertMismatch         Whether to assert mismatches
2332          * @return      $ret    The (hopefully) secured hext-numbered value
2333          */
2334         public function hexval ($num, $assertMismatch = FALSE) {
2335                 // Filter all numbers out
2336                 $ret = preg_replace('/[^0123456789abcdefABCDEF]/', '', $num);
2337
2338                 // Assert only if requested
2339                 if ($assertMismatch === TRUE) {
2340                         // Has the whole value changed?
2341                         assert(('' . $ret . '' != '' . $num . '') && (!is_null($num)));
2342                 } // END - if
2343
2344                 // Return result
2345                 return $ret;
2346         }
2347
2348         /**
2349          * Checks whether start/end marker are set
2350          *
2351          * @param       $data   Data to be checked
2352          * @return      $isset  Whether start/end marker are set
2353          */
2354         public final function ifStartEndMarkersSet ($data) {
2355                 // Determine it
2356                 $isset = ((substr($data, 0, strlen(BaseRawDataHandler::STREAM_START_MARKER)) == BaseRawDataHandler::STREAM_START_MARKER) && (substr($data, -1 * strlen(BaseRawDataHandler::STREAM_END_MARKER), strlen(BaseRawDataHandler::STREAM_END_MARKER)) == BaseRawDataHandler::STREAM_END_MARKER));
2357
2358                 // ... and return it
2359                 return $isset;
2360         }
2361
2362         /**
2363          * Determines if an element is set in the generic array
2364          *
2365          * @param       $keyGroup       Main group for the key
2366          * @param       $subGroup       Sub group for the key
2367          * @param       $key            Key to check
2368          * @param       $element        Element to check
2369          * @return      $isset          Whether the given key is set
2370          */
2371         protected final function isGenericArrayElementSet ($keyGroup, $subGroup, $key, $element) {
2372                 // Debug message
2373                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element);
2374
2375                 // Is it there?
2376                 $isset = isset($this->genericArray[$keyGroup][$subGroup][$key][$element]);
2377
2378                 // Return it
2379                 return $isset;
2380         }
2381         /**
2382          * Determines if a key is set in the generic array
2383          *
2384          * @param       $keyGroup       Main group for the key
2385          * @param       $subGroup       Sub group for the key
2386          * @param       $key            Key to check
2387          * @return      $isset          Whether the given key is set
2388          */
2389         protected final function isGenericArrayKeySet ($keyGroup, $subGroup, $key) {
2390                 // Debug message
2391                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key);
2392
2393                 // Is it there?
2394                 $isset = isset($this->genericArray[$keyGroup][$subGroup][$key]);
2395
2396                 // Return it
2397                 return $isset;
2398         }
2399
2400
2401         /**
2402          * Determines if a group is set in the generic array
2403          *
2404          * @param       $keyGroup       Main group
2405          * @param       $subGroup       Sub group
2406          * @return      $isset          Whether the given group is set
2407          */
2408         protected final function isGenericArrayGroupSet ($keyGroup, $subGroup) {
2409                 // Debug message
2410                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup);
2411
2412                 // Is it there?
2413                 $isset = isset($this->genericArray[$keyGroup][$subGroup]);
2414
2415                 // Return it
2416                 return $isset;
2417         }
2418
2419         /**
2420          * Getter for sub key group
2421          *
2422          * @param       $keyGroup       Main key group
2423          * @param       $subGroup       Sub key group
2424          * @return      $array          An array with all array elements
2425          */
2426         protected final function getGenericSubArray ($keyGroup, $subGroup) {
2427                 // Is it there?
2428                 if (!$this->isGenericArrayGroupSet($keyGroup, $subGroup)) {
2429                         // No, then abort here
2430                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ' not found.');
2431                         exit;
2432                 } // END - if
2433
2434                 // Debug message
2435                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',value=' . print_r($this->genericArray[$keyGroup][$subGroup], TRUE));
2436
2437                 // Return it
2438                 return $this->genericArray[$keyGroup][$subGroup];
2439         }
2440
2441         /**
2442          * Unsets a given key in generic array
2443          *
2444          * @param       $keyGroup       Main group for the key
2445          * @param       $subGroup       Sub group for the key
2446          * @param       $key            Key to unset
2447          * @return      void
2448          */
2449         protected final function unsetGenericArrayKey ($keyGroup, $subGroup, $key) {
2450                 // Debug message
2451                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key);
2452
2453                 // Remove it
2454                 unset($this->genericArray[$keyGroup][$subGroup][$key]);
2455         }
2456
2457         /**
2458          * Unsets a given element in generic array
2459          *
2460          * @param       $keyGroup       Main group for the key
2461          * @param       $subGroup       Sub group for the key
2462          * @param       $key            Key to unset
2463          * @param       $element        Element to unset
2464          * @return      void
2465          */
2466         protected final function unsetGenericArrayElement ($keyGroup, $subGroup, $key, $element) {
2467                 // Debug message
2468                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element);
2469
2470                 // Remove it
2471                 unset($this->genericArray[$keyGroup][$subGroup][$key][$element]);
2472         }
2473
2474         /**
2475          * Append a string to a given generic array key
2476          *
2477          * @param       $keyGroup       Main group for the key
2478          * @param       $subGroup       Sub group for the key
2479          * @param       $key            Key to unset
2480          * @param       $value          Value to add/append
2481          * @return      void
2482          */
2483         protected final function appendStringToGenericArrayKey ($keyGroup, $subGroup, $key, $value, $appendGlue = '') {
2484                 // Debug message
2485                 //* NOISY-DEBUG: */ if (!is_object($value)) $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',value[' . gettype($value) . ']=' . print_r($value, TRUE) . ',appendGlue=' . $appendGlue);
2486
2487                 // Is it already there?
2488                 if ($this->isGenericArrayKeySet($keyGroup, $subGroup, $key)) {
2489                         // Append it
2490                         $this->genericArray[$keyGroup][$subGroup][$key] .= $appendGlue . (string) $value;
2491                 } else {
2492                         // Add it
2493                         $this->genericArray[$keyGroup][$subGroup][$key] = (string) $value;
2494                 }
2495         }
2496
2497         /**
2498          * Append a string to a given generic array element
2499          *
2500          * @param       $keyGroup       Main group for the key
2501          * @param       $subGroup       Sub group for the key
2502          * @param       $key            Key to unset
2503          * @param       $element        Element to check
2504          * @param       $value          Value to add/append
2505          * @return      void
2506          */
2507         protected final function appendStringToGenericArrayElement ($keyGroup, $subGroup, $key, $element, $value, $appendGlue = '') {
2508                 // Debug message
2509                 //* NOISY-DEBUG: */ if (!is_object($value)) $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element . ',value[' . gettype($value) . ']=' . print_r($value, TRUE) . ',appendGlue=' . $appendGlue);
2510
2511                 // Is it already there?
2512                 if ($this->isGenericArrayElementSet($keyGroup, $subGroup, $key, $element)) {
2513                         // Append it
2514                         $this->genericArray[$keyGroup][$subGroup][$key][$element] .= $appendGlue . (string) $value;
2515                 } else {
2516                         // Add it
2517                         $this->genericArray[$keyGroup][$subGroup][$key][$element] = (string) $value;
2518                 }
2519         }
2520
2521         /**
2522          * Initializes given generic array group
2523          *
2524          * @param       $keyGroup       Main group for the key
2525          * @param       $subGroup       Sub group for the key
2526          * @param       $key            Key to use
2527          * @param       $forceInit      Optionally force initialization
2528          * @return      void
2529          */
2530         protected final function initGenericArrayGroup ($keyGroup, $subGroup, $forceInit = FALSE) {
2531                 // Debug message
2532                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',forceInit=' . intval($forceInit));
2533
2534                 // Is it already set?
2535                 if (($forceInit === FALSE) && ($this->isGenericArrayGroupSet($keyGroup, $subGroup))) {
2536                         // Already initialized
2537                         trigger_error(__METHOD__ . ':keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ' already initialized.');
2538                         exit;
2539                 } // END - if
2540
2541                 // Initialize it
2542                 $this->genericArray[$keyGroup][$subGroup] = array();
2543         }
2544
2545         /**
2546          * Initializes given generic array key
2547          *
2548          * @param       $keyGroup       Main group for the key
2549          * @param       $subGroup       Sub group for the key
2550          * @param       $key            Key to use
2551          * @param       $forceInit      Optionally force initialization
2552          * @return      void
2553          */
2554         protected final function initGenericArrayKey ($keyGroup, $subGroup, $key, $forceInit = FALSE) {
2555                 // Debug message
2556                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',forceInit=' . intval($forceInit));
2557
2558                 // Is it already set?
2559                 if (($forceInit === FALSE) && ($this->isGenericArrayKeySet($keyGroup, $subGroup, $key))) {
2560                         // Already initialized
2561                         trigger_error(__METHOD__ . ':keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ' already initialized.');
2562                         exit;
2563                 } // END - if
2564
2565                 // Initialize it
2566                 $this->genericArray[$keyGroup][$subGroup][$key] = array();
2567         }
2568
2569         /**
2570          * Initializes given generic array element
2571          *
2572          * @param       $keyGroup       Main group for the key
2573          * @param       $subGroup       Sub group for the key
2574          * @param       $key            Key to use
2575          * @param       $element        Element to use
2576          * @param       $forceInit      Optionally force initialization
2577          * @return      void
2578          */
2579         protected final function initGenericArrayElement ($keyGroup, $subGroup, $key, $element, $forceInit = FALSE) {
2580                 // Debug message
2581                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element . ',forceInit=' . intval($forceInit));
2582
2583                 // Is it already set?
2584                 if (($forceInit === FALSE) && ($this->isGenericArrayElementSet($keyGroup, $subGroup, $key, $element))) {
2585                         // Already initialized
2586                         trigger_error(__METHOD__ . ':keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element . ' already initialized.');
2587                         exit;
2588                 } // END - if
2589
2590                 // Initialize it
2591                 $this->genericArray[$keyGroup][$subGroup][$key][$element] = array();
2592         }
2593
2594         /**
2595          * Pushes an element to a generic key
2596          *
2597          * @param       $keyGroup       Main group for the key
2598          * @param       $subGroup       Sub group for the key
2599          * @param       $key            Key to use
2600          * @param       $value          Value to add/append
2601          * @return      $count          Number of array elements
2602          */
2603         protected final function pushValueToGenericArrayKey ($keyGroup, $subGroup, $key, $value) {
2604                 // Debug message
2605                 //* NOISY-DEBUG: */ if (!is_object($value)) $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',value[' . gettype($value) . ']=' . print_r($value, TRUE));
2606
2607                 // Is it set?
2608                 if (!$this->isGenericArrayKeySet($keyGroup, $subGroup, $key)) {
2609                         // Initialize array
2610                         $this->initGenericArrayKey($keyGroup, $subGroup, $key);
2611                 } // END - if
2612
2613                 // Then push it
2614                 $count = array_push($this->genericArray[$keyGroup][$subGroup][$key], $value);
2615
2616                 // Return count
2617                 //* DEBUG: */ print(__METHOD__ . ': genericArray=' . print_r($this->genericArray[$keyGroup][$subGroup][$key], TRUE));
2618                 //* DEBUG: */ print(__METHOD__ . ': count=' . $count . PHP_EOL);
2619                 return $count;
2620         }
2621
2622         /**
2623          * Pushes an element to a generic array element
2624          *
2625          * @param       $keyGroup       Main group for the key
2626          * @param       $subGroup       Sub group for the key
2627          * @param       $key            Key to use
2628          * @param       $element        Element to check
2629          * @param       $value          Value to add/append
2630          * @return      $count          Number of array elements
2631          */
2632         protected final function pushValueToGenericArrayElement ($keyGroup, $subGroup, $key, $element, $value) {
2633                 // Debug message
2634                 //* NOISY-DEBUG: */ if (!is_object($value)) $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element . ',value[' . gettype($value) . ']=' . print_r($value, TRUE));
2635
2636                 // Is it set?
2637                 if (!$this->isGenericArrayElementSet($keyGroup, $subGroup, $key, $element)) {
2638                         // Initialize array
2639                         $this->initGenericArrayElement($keyGroup, $subGroup, $key, $element);
2640                 } // END - if
2641
2642                 // Then push it
2643                 $count = array_push($this->genericArray[$keyGroup][$subGroup][$key][$element], $value);
2644
2645                 // Return count
2646                 //* DEBUG: */ print(__METHOD__ . ': genericArray=' . print_r($this->genericArray[$keyGroup][$subGroup][$key], TRUE));
2647                 //* DEBUG: */ print(__METHOD__ . ': count=' . $count . PHP_EOL);
2648                 return $count;
2649         }
2650
2651         /**
2652          * Pops an element from  a generic group
2653          *
2654          * @param       $keyGroup       Main group for the key
2655          * @param       $subGroup       Sub group for the key
2656          * @param       $key            Key to unset
2657          * @return      $value          Last "popped" value
2658          */
2659         protected final function popGenericArrayElement ($keyGroup, $subGroup, $key) {
2660                 // Debug message
2661                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key);
2662
2663                 // Is it set?
2664                 if (!$this->isGenericArrayKeySet($keyGroup, $subGroup, $key)) {
2665                         // Not found
2666                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ' not found.');
2667                         exit;
2668                 } // END - if
2669
2670                 // Then "pop" it
2671                 $value = array_pop($this->genericArray[$keyGroup][$subGroup][$key]);
2672
2673                 // Return value
2674                 //* DEBUG: */ print(__METHOD__ . ': genericArray=' . print_r($this->genericArray[$keyGroup][$subGroup][$key], TRUE));
2675                 //* DEBUG: */ print(__METHOD__ . ': value[' . gettype($value) . ']=' . print_r($value, TRUE) . PHP_EOL);
2676                 return $value;
2677         }
2678
2679         /**
2680          * Shifts an element from  a generic group
2681          *
2682          * @param       $keyGroup       Main group for the key
2683          * @param       $subGroup       Sub group for the key
2684          * @param       $key            Key to unset
2685          * @return      $value          Last "popped" value
2686          */
2687         protected final function shiftGenericArrayElement ($keyGroup, $subGroup, $key) {
2688                 // Debug message
2689                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key);
2690
2691                 // Is it set?
2692                 if (!$this->isGenericArrayKeySet($keyGroup, $subGroup, $key)) {
2693                         // Not found
2694                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ' not found.');
2695                         exit;
2696                 } // END - if
2697
2698                 // Then "shift" it
2699                 $value = array_shift($this->genericArray[$keyGroup][$subGroup][$key]);
2700
2701                 // Return value
2702                 //* DEBUG: */ print(__METHOD__ . ': genericArray=' . print_r($this->genericArray[$keyGroup][$subGroup][$key], TRUE));
2703                 //* DEBUG: */ print(__METHOD__ . ': value[' . gettype($value) . ']=' . print_r($value, TRUE) . PHP_EOL);
2704                 return $value;
2705         }
2706
2707         /**
2708          * Count generic array group
2709          *
2710          * @param       $keyGroup       Main group for the key
2711          * @return      $count          Count of given group
2712          */
2713         protected final function countGenericArray ($keyGroup) {
2714                 // Debug message
2715                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup);
2716
2717                 // Is it there?
2718                 if (!isset($this->genericArray[$keyGroup])) {
2719                         // Abort here
2720                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ' not found.');
2721                         exit;
2722                 } // END - if
2723
2724                 // Then count it
2725                 $count = count($this->genericArray[$keyGroup]);
2726
2727                 // Debug message
2728                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',count=' . $count);
2729
2730                 // Return it
2731                 return $count;
2732         }
2733
2734         /**
2735          * Count generic array sub group
2736          *
2737          * @param       $keyGroup       Main group for the key
2738          * @param       $subGroup       Sub group for the key
2739          * @return      $count          Count of given group
2740          */
2741         protected final function countGenericArrayGroup ($keyGroup, $subGroup) {
2742                 // Debug message
2743                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup);
2744
2745                 // Is it there?
2746                 if (!$this->isGenericArrayGroupSet($keyGroup, $subGroup)) {
2747                         // Abort here
2748                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ' not found.');
2749                         exit;
2750                 } // END - if
2751
2752                 // Then count it
2753                 $count = count($this->genericArray[$keyGroup][$subGroup]);
2754
2755                 // Debug message
2756                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',count=' . $count);
2757
2758                 // Return it
2759                 return $count;
2760         }
2761
2762         /**
2763          * Count generic array elements
2764          *
2765          * @param       $keyGroup       Main group for the key
2766          * @param       $subGroup       Sub group for the key
2767          * @para        $key            Key to count
2768          * @return      $count          Count of given key
2769          */
2770         protected final function countGenericArrayElements ($keyGroup, $subGroup, $key) {
2771                 // Debug message
2772                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key);
2773
2774                 // Is it there?
2775                 if (!$this->isGenericArrayKeySet($keyGroup, $subGroup, $key)) {
2776                         // Abort here
2777                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ' not found.');
2778                         exit;
2779                 } elseif (!$this->isValidGenericArrayGroup($keyGroup, $subGroup)) {
2780                         // Not valid
2781                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ' is not an array.');
2782                         exit;
2783                 }
2784
2785                 // Then count it
2786                 $count = count($this->genericArray[$keyGroup][$subGroup][$key]);
2787
2788                 // Debug message
2789                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',count=' . $count);
2790
2791                 // Return it
2792                 return $count;
2793         }
2794
2795         /**
2796          * Getter for whole generic group array
2797          *
2798          * @param       $keyGroup       Key group to get
2799          * @return      $array          Whole generic array group
2800          */
2801         protected final function getGenericArray ($keyGroup) {
2802                 // Debug message
2803                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup);
2804
2805                 // Is it there?
2806                 if (!isset($this->genericArray[$keyGroup])) {
2807                         // Then abort here
2808                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ' does not exist.');
2809                         exit;
2810                 } // END - if
2811
2812                 // Return it
2813                 return $this->genericArray[$keyGroup];
2814         }
2815
2816         /**
2817          * Setter for generic array key
2818          *
2819          * @param       $keyGroup       Key group to get
2820          * @param       $subGroup       Sub group for the key
2821          * @param       $key            Key to unset
2822          * @param       $value          Mixed value from generic array element
2823          * @return      void
2824          */
2825         protected final function setGenericArrayKey ($keyGroup, $subGroup, $key, $value) {
2826                 // Debug message
2827                 //* NOISY-DEBUG: */ if (!is_object($value)) $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',value[' . gettype($value) . ']=' . print_r($value, TRUE));
2828
2829                 // Set value here
2830                 $this->genericArray[$keyGroup][$subGroup][$key] = $value;
2831         }
2832
2833         /**
2834          * Getter for generic array key
2835          *
2836          * @param       $keyGroup       Key group to get
2837          * @param       $subGroup       Sub group for the key
2838          * @param       $key            Key to unset
2839          * @return      $value          Mixed value from generic array element
2840          */
2841         protected final function getGenericArrayKey ($keyGroup, $subGroup, $key) {
2842                 // Debug message
2843                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key);
2844
2845                 // Is it there?
2846                 if (!$this->isGenericArrayKeySet($keyGroup, $subGroup, $key)) {
2847                         // Then abort here
2848                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ' does not exist.');
2849                         exit;
2850                 } // END - if
2851
2852                 // Return it
2853                 return $this->genericArray[$keyGroup][$subGroup][$key];
2854         }
2855
2856         /**
2857          * Sets a value in given generic array key/element
2858          *
2859          * @param       $keyGroup       Main group for the key
2860          * @param       $subGroup       Sub group for the key
2861          * @param       $key            Key to set
2862          * @param       $element        Element to set
2863          * @param       $value          Value to set
2864          * @return      void
2865          */
2866         protected final function setGenericArrayElement ($keyGroup, $subGroup, $key, $element, $value) {
2867                 // Debug message
2868                 //* NOISY-DEBUG: */ if (!is_object($value)) $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element . ',value[' . gettype($value) . ']=' . print_r($value, TRUE));
2869
2870                 // Then set it
2871                 $this->genericArray[$keyGroup][$subGroup][$key][$element] = $value;
2872         }
2873
2874         /**
2875          * Getter for generic array element
2876          *
2877          * @param       $keyGroup       Key group to get
2878          * @param       $subGroup       Sub group for the key
2879          * @param       $key            Key to look for
2880          * @param       $element        Element to look for
2881          * @return      $value          Mixed value from generic array element
2882          */
2883         protected final function getGenericArrayElement ($keyGroup, $subGroup, $key, $element) {
2884                 // Debug message
2885                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element);
2886
2887                 // Is it there?
2888                 if (!$this->isGenericArrayElementSet($keyGroup, $subGroup, $key, $element)) {
2889                         // Then abort here
2890                         trigger_error(__METHOD__ . ': keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key . ',element=' . $element . ' does not exist.');
2891                         exit;
2892                 } // END - if
2893
2894                 // Return it
2895                 return $this->genericArray[$keyGroup][$subGroup][$key][$element];
2896         }
2897
2898         /**
2899          * Checks if a given sub group is valid (array)
2900          *
2901          * @param       $keyGroup       Key group to get
2902          * @param       $subGroup       Sub group for the key
2903          * @return      $isValid        Whether given sub group is valid
2904          */
2905         protected final function isValidGenericArrayGroup ($keyGroup, $subGroup) {
2906                 // Debug message
2907                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup);
2908
2909                 // Determine it
2910                 $isValid = (($this->isGenericArrayGroupSet($keyGroup, $subGroup)) && (is_array($this->getGenericSubArray($keyGroup, $subGroup))));
2911
2912                 // Return it
2913                 return $isValid;
2914         }
2915
2916         /**
2917          * Checks if a given key is valid (array)
2918          *
2919          * @param       $keyGroup       Key group to get
2920          * @param       $subGroup       Sub group for the key
2921          * @param       $key            Key to check
2922          * @return      $isValid        Whether given sub group is valid
2923          */
2924         protected final function isValidGenericArrayKey ($keyGroup, $subGroup, $key) {
2925                 // Debug message
2926                 //* NOISY-DEBUG: */ $this->outputLine('[' . __METHOD__ . ':' . __LINE__ . '] keyGroup=' . $keyGroup . ',subGroup=' . $subGroup . ',key=' . $key);
2927
2928                 // Determine it
2929                 $isValid = (($this->isGenericArrayKeySet($keyGroup, $subGroup, $key)) && (is_array($this->getGenericArrayKey($keyGroup, $subGroup, $key))));
2930
2931                 // Return it
2932                 return $isValid;
2933         }
2934
2935         /**
2936          * Translates boolean TRUE to 'Y' and FALSE to 'N'
2937          *
2938          * @param       $boolean                Boolean value
2939          * @return      $translated             Translated boolean value
2940          */
2941         public static final function translateBooleanToYesNo ($boolean) {
2942                 // Make sure it is really boolean
2943                 assert(is_bool($boolean));
2944
2945                 // "Translate" it
2946                 $translated = ($boolean === TRUE) ? 'Y' : 'N';
2947
2948                 // ... and return it
2949                 return $translated;
2950         }
2951 }
2952
2953 // [EOF]
2954 ?>