]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/class_BaseFrameworkSystem.php
Continued:
[core.git] / framework / main / classes / class_BaseFrameworkSystem.php
index 8a05df928e1753442fe4c7723457078fc2bf35f7..91af004ff3d4f14ee47cd58aad482b75f0de8e6b 100644 (file)
@@ -1,53 +1,41 @@
 <?php
 // Own namespace
-namespace CoreFramework\Object;
+namespace Org\Mxchange\CoreFramework\Object;
 
 // Import framework stuff
-use CoreFramework\Bootstrap\FrameworkBootstrap;
-use CoreFramework\Compressor\Compressor;
-use CoreFramework\Configuration\FrameworkConfiguration;
-use CoreFramework\Connection\Database\DatabaseConnection;
-use CoreFramework\Controller\Controller;
-use CoreFramework\Criteria\Criteria;
-use CoreFramework\Criteria\Local\LocalSearchCriteria;
-use CoreFramework\Criteria\Local\LocalUpdateCriteria;
-use CoreFramework\Crypto\Cryptable;
-use CoreFramework\Crypto\RandomNumber\RandomNumberGenerator;
-use CoreFramework\Database\Frontend\DatabaseWrapper;
-use CoreFramework\Factory\Database\Wrapper\DatabaseWrapperFactory;
-use CoreFramework\Factory\ObjectFactory;
-use CoreFramework\Filesystem\Block;
-use CoreFramework\Filesystem\FilePointer;
-use CoreFramework\Filesystem\FrameworkDirectory;
-use CoreFramework\Filesystem\PathWriteProtectedException;
-use CoreFramework\Generic\FrameworkInterface;
-use CoreFramework\Generic\NullPointerException;
-use CoreFramework\Generic\UnsupportedOperationException;
-use CoreFramework\Handler\Handleable;
-use CoreFramework\Handler\Stream\IoHandler;
-use CoreFramework\Index\Indexable;
-use CoreFramework\Lists\Listable;
-use CoreFramework\Loader\ClassLoader;
-use CoreFramework\Manager\ManageableApplication;
-use CoreFramework\Middleware\Compressor\CompressorChannel;
-use CoreFramework\Middleware\Debug\DebugMiddleware;
-use CoreFramework\Parser\Parseable;
-use CoreFramework\Registry\Register;
-use CoreFramework\Registry\Registry;
-use CoreFramework\Resolver\Resolver;
-use CoreFramework\Result\Database\CachedDatabaseResult;
-use CoreFramework\Result\Search\SearchableResult;
-use CoreFramework\Stacker\Stackable;
-use CoreFramework\State\Stateable;
-use CoreFramework\Stream\Output\OutputStreamer;
-use CoreFramework\Template\CompileableTemplate;
-use CoreFramework\User\ManageableAccount;
-use CoreFramework\Visitor\Visitor;
+use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
+use Org\Mxchange\CoreFramework\Criteria\Criteria;
+use Org\Mxchange\CoreFramework\Crypto\Cryptable;
+use Org\Mxchange\CoreFramework\Database\Frontend\DatabaseWrapper;
+use Org\Mxchange\CoreFramework\EntryPoint\ApplicationEntryPoint;
+use Org\Mxchange\CoreFramework\Factory\Database\Wrapper\DatabaseWrapperFactory;
+use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
+use Org\Mxchange\CoreFramework\Filesystem\PathWriteProtectedException;
+use Org\Mxchange\CoreFramework\Generic\FrameworkInterface;
+use Org\Mxchange\CoreFramework\Generic\NullPointerException;
+use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
+use Org\Mxchange\CoreFramework\Handler\Handleable;
+use Org\Mxchange\CoreFramework\Helper\Helper;
+use Org\Mxchange\CoreFramework\Loader\ClassLoader;
+use Org\Mxchange\CoreFramework\Localization\ManageableLanguage;
+use Org\Mxchange\CoreFramework\Manager\ManageableApplication;
+use Org\Mxchange\CoreFramework\Middleware\Debug\DebugMiddleware;
+use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
+use Org\Mxchange\CoreFramework\Result\Database\CachedDatabaseResult;
+use Org\Mxchange\CoreFramework\Result\Search\SearchableResult;
+use Org\Mxchange\CoreFramework\State\Stateable;
+use Org\Mxchange\CoreFramework\Stream\Input\InputStream;
+use Org\Mxchange\CoreFramework\Stream\Output\OutputStreamer;
+use Org\Mxchange\CoreFramework\Stream\Output\OutputStream;
+use Org\Mxchange\CoreFramework\User\ManageableAccount;
+use Org\Mxchange\CoreFramework\Utils\String\StringUtils;
 
 // Import SPL stuff
 use \stdClass;
+use \InvalidArgumentException;
 use \Iterator;
 use \ReflectionClass;
+use \SplFileInfo;
 
 /**
  * The simulator system class is the super class of all other classes. This
@@ -55,7 +43,7 @@ use \ReflectionClass;
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  *
@@ -72,41 +60,21 @@ use \ReflectionClass;
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
+abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
        /**
         * Length of output from hash()
         */
        private static $hashLength = NULL;
 
        /**
-        * The real class name
-        */
-       private $realClass = 'BaseFrameworkSystem';
-
-       /**
-        * Search criteria instance
-        */
-       private $searchInstance = NULL;
-
-       /**
-        * Update criteria instance
-        */
-       private $updateInstance = NULL;
-
-       /**
-        * The file I/O instance for the template loader
-        */
-       private $fileIoInstance = NULL;
-
-       /**
-        * Resolver instance
+        * Self-referencing instance
         */
-       private $resolverInstance = NULL;
+       private static $instance = NULL;
 
        /**
-        * Template engine instance
+        * The real class name
         */
-       private $templateInstance = NULL;
+       private $realClass = __CLASS__;
 
        /**
         * Database result instance
@@ -118,16 +86,6 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        private $userInstance = NULL;
 
-       /**
-        * A controller instance
-        */
-       private $controllerInstance = NULL;
-
-       /**
-        * Instance of a RNG
-        */
-       private $rngInstance = NULL;
-
        /**
         * Instance of a crypto helper
         */
@@ -138,61 +96,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        private $iteratorInstance = NULL;
 
-       /**
-        * Instance of the list
-        */
-       private $listInstance = NULL;
-
-       /**
-        * Instance of a menu
-        */
-       private $menuInstance = NULL;
-
-       /**
-        * Instance of the image
-        */
-       private $imageInstance = NULL;
-
-       /**
-        * Instance of the stacker
-        */
-       private $stackInstance = NULL;
-
-       /**
-        * A Compressor instance
-        */
-       private $compressorInstance = NULL;
-
-       /**
-        * A Parseable instance
-        */
-       private $parserInstance = NULL;
-
-       /**
-        * A HandleableProtocol instance
-        */
-       private $protocolInstance = NULL;
-
-       /**
-        * A database wrapper instance
-        */
-       private $databaseInstance = NULL;
-
        /**
         * A helper instance for the form
         */
        private $helperInstance = NULL;
 
-       /**
-        * An instance of a Source class
-        */
-       private $sourceInstance = NULL;
-
-       /**
-        * An instance of a UrlSource class
-        */
-       private $urlSourceInstance = NULL;
-
        /**
         * An instance of a InputStream class
         */
@@ -208,134 +116,26 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        private $handlerInstance = NULL;
 
-       /**
-        * Visitor handler instance
-        */
-       private $visitorInstance = NULL;
-
-       /**
-        * DHT instance
-        */
-       private $dhtInstance = NULL;
-
        /**
         * An instance of a database wrapper class
         */
        private $wrapperInstance = NULL;
 
-       /**
-        * An instance of a file I/O pointer class (not handler)
-        */
-       private $pointerInstance = NULL;
-
-       /**
-        * An instance of an Indexable class
-        */
-       private $indexInstance = NULL;
-
-       /**
-        * An instance of a Block class
-        */
-       private $blockInstance = NULL;
-
-       /**
-        * A Minable instance
-        */
-       private $minableInstance = NULL;
-
-       /**
-        * A FrameworkDirectory instance
-        */
-       private $directoryInstance = NULL;
-
-       /**
-        * An instance of a communicator
-        */
-       private $communicatorInstance = NULL;
-
-       /**
-        * The concrete output instance
-        */
-       private $outputInstance = NULL;
-
        /**
         * State instance
         */
        private $stateInstance = NULL;
 
        /**
-        * Thousands separator
-        */
-       private $thousands = '.'; // German
-
-       /**
-        * Decimal separator
+        * Call-back instance
         */
-       private $decimals  = ','; // German
-
-       /**
-        * Socket resource
-        */
-       private $socketResource = false;
-
-       /**
-        * Regular expression to use for validation
-        */
-       private $regularExpression = '';
-
-       /**
-        * Package data
-        */
-       private $packageData = array();
+       private $callbackInstance = NULL;
 
        /**
         * Generic array
         */
        private $genericArray = array();
 
-       /**
-        * Command name
-        */
-       private $commandName = '';
-
-       /**
-        * Controller name
-        */
-       private $controllerName = '';
-
-       /**
-        * Name of used protocol
-        */
-       private $protocolName = 'invalid';
-
-       /**
-        * Array with bitmasks and such for pack/unpack methods to support both
-        * 32-bit and 64-bit systems
-        */
-       private $packingData = array(
-               32 => array(
-                       'step'   => 3,
-                       'left'   => 0xffff0000,
-                       'right'  => 0x0000ffff,
-                       'factor' => 16,
-                       'format' => 'II',
-               ),
-               64 => array(
-                       'step'   => 7,
-                       'left'   => 0xffffffff00000000,
-                       'right'  => 0x00000000ffffffff,
-                       'factor' => 32,
-                       'format' => 'NN'
-               )
-       );
-
-       /**
-        * Simple 64-bit check, thanks to "Salman A" from stackoverflow.com:
-        *
-        * The integer size is 4 bytes on 32-bit and 8 bytes on a 64-bit system.
-        */
-       private $archArrayElement = false;
-
        /***********************
         * Exception codes.... *
         ***********************/
@@ -403,50 +203,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
        const EXCEPTION_DATABASE_UPDATED_NOT_ALLOWED = 0x03c;
        const EXCEPTION_FILTER_CHAIN_INTERCEPTED     = 0x03d;
        const EXCEPTION_INVALID_SOCKET               = 0x03e;
-
-       /**
-        * Hexadecimal->Decimal translation array
-        */
-       private static $hexdec = array(
-               '0' => 0,
-               '1' => 1,
-               '2' => 2,
-               '3' => 3,
-               '4' => 4,
-               '5' => 5,
-               '6' => 6,
-               '7' => 7,
-               '8' => 8,
-               '9' => 9,
-               'a' => 10,
-               'b' => 11,
-               'c' => 12,
-               'd' => 13,
-               'e' => 14,
-               'f' => 15
-       );
-
-       /**
-        * Decimal->hexadecimal translation array
-        */
-       private static $dechex = array(
-                0 => '0',
-                1 => '1',
-                2 => '2',
-                3 => '3',
-                4 => '4',
-                5 => '5',
-                6 => '6',
-                7 => '7',
-                8 => '8',
-                9 => '9',
-               10 => 'a',
-               11 => 'b',
-               12 => 'c',
-               13 => 'd',
-               14 => 'e',
-               15 => 'f'
-       );
+       const EXCEPTION_SELF_INSTANCE                = 0x03f;
 
        /**
         * Startup time in miliseconds
@@ -459,24 +216,15 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         * @param       $className      Name of the class
         * @return      void
         */
-       protected function __construct ($className) {
+       protected function __construct (string $className) {
                // Set real class
                $this->setRealClass($className);
 
-               // Set configuration instance if no registry ...
-               if (!$this instanceof Register) {
-                       // ... because registries doesn't need to be configured
-                       $this->setConfigInstance(FrameworkConfiguration::getSelfInstance());
-               } // END - if
-
                // Is the startup time set? (0 cannot be true anymore)
                if (self::$startupTime == 0) {
                        // Then set it
                        self::$startupTime = microtime(true);
                } // END - if
-
-               // Set array element
-               $this->archArrayElement = (PHP_INT_SIZE === 8 ? 64 : 32);
        }
 
        /**
@@ -494,8 +242,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        $this->setRealClass('DestructedObject');
                } elseif ((defined('DEBUG_DESTRUCTOR')) && (is_object($this->getDebugInstance()))) {
                        // Already destructed object
-                       self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s:] The object <span class="object_name">%s</span> is already destroyed.',
-                               __CLASS__,
+                       self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('The object <span class="object_name">%s</span> is already destroyed.',
                                $this->__toString()
                        ));
                } else {
@@ -513,22 +260,40 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         * @return      void
         */
        public final function __call ($methodName, $args) {
-               return self::__callStatic($methodName, $args);
+               // Set self-instance
+               self::$instance = $this;
+
+               // Call static method
+               self::__callStatic($methodName, $args);
+
+               // Clear self-instance
+               self::$instance = NULL;
        }
 
        /**
         * The __callStatic() method where all non-implemented static methods end up
         *
         * @param       $methodName             Name of the missing method
-        * @args        $args                   Arguments passed to the method
+        * @param       $args                   Arguments passed to the method
         * @return      void
+        * @throws      InvalidArgumentException If self::$instance is not a framework's own object
         */
        public static final function __callStatic ($methodName, $args) {
                // Trace message
                //* PRINT-DEBUG: */ printf('[%s:%d]: methodName=%s,args[]=%s - CALLED!' . PHP_EOL, __METHOD__, __LINE__, $methodName, gettype($args));
 
-               // Init argument string
+               // Init argument string and class name
                $argsString = '';
+               $className = 'unknown';
+
+               // Is self-instance set?
+               if (self::$instance instanceof FrameworkInterface) {
+                       // Framework's own instance
+                       $className = self::$instance->__toString();
+               } elseif (!is_null(self::$instance)) {
+                       // Invalid argument!
+                       throw new InvalidArgumentException(sprintf('self::instance[%s] is not expected.', gettype(self::$instance)), self::EXCEPTION_SELF_INSTANCE);
+               }
 
                // Is it NULL, empty or an array?
                if (is_null($args)) {
@@ -573,8 +338,9 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                                $argsString .= ', ';
                        } // END - foreach
 
-                       // Remove last comma
+                       // Last comma found?
                        if (substr($argsString, -2, 1) == ',') {
+                               // Remove last comma
                                $argsString = substr($argsString, 0, -2);
                        } // END - if
 
@@ -582,12 +348,13 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        $argsString .= ')';
                } else {
                        // Invalid arguments!
-                       $argsString = '!INVALID:' . gettype($args) . '!';
+                       $argsString = sprintf('!INVALID:%s!', gettype($args));
                }
 
                // Output stub message
                // @TODO __CLASS__ does always return BaseFrameworkSystem but not the extending (=child) class
-               self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[unknown::%s:] Stub! Args: %s',
+               self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(sprintf('[%s::%s]: Stub! Args: %s',
+                       $className,
                        $methodName,
                        $argsString
                ));
@@ -671,967 +438,292 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         * @throws      UnsupportedOperationException   Objects of this framework cannot be serialized
         */
        public final function __invoke () {
-               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
-       }
-
-       /**
-        * Setter for the real class name
-        *
-        * @param       $realClass      Class name (string)
-        * @return      void
-        */
-       public final function setRealClass ($realClass) {
-               // Set real class
-               $this->realClass = (string) $realClass;
-       }
-
-       /**
-        * Setter for database result instance
-        *
-        * @param       $resultInstance         An instance of a database result class
-        * @return      void
-        * @todo        SearchableResult and UpdateableResult shall have a super interface to use here
-        */
-       protected final function setResultInstance (SearchableResult $resultInstance) {
-               $this->resultInstance =  $resultInstance;
-       }
-
-       /**
-        * Getter for database result instance
-        *
-        * @return      $resultInstance         An instance of a database result class
-        */
-       public final function getResultInstance () {
-               return $this->resultInstance;
-       }
-
-       /**
-        * Setter for template engine instances
-        *
-        * @param       $templateInstance       An instance of a template engine class
-        * @return      void
-        */
-       protected final function setTemplateInstance (CompileableTemplate $templateInstance) {
-               $this->templateInstance = $templateInstance;
-       }
-
-       /**
-        * Getter for template engine instances
-        *
-        * @return      $templateInstance       An instance of a template engine class
-        */
-       protected final function getTemplateInstance () {
-               return $this->templateInstance;
-       }
-
-       /**
-        * Setter for search instance
-        *
-        * @param       $searchInstance         Searchable criteria instance
-        * @return      void
-        */
-       public final function setSearchInstance (LocalSearchCriteria $searchInstance) {
-               $this->searchInstance = $searchInstance;
-       }
-
-       /**
-        * Getter for search instance
-        *
-        * @return      $searchInstance         Searchable criteria instance
-        */
-       public final function getSearchInstance () {
-               return $this->searchInstance;
-       }
-
-       /**
-        * Setter for update instance
-        *
-        * @param       $updateInstance         An instance of a LocalUpdateCriteria clase
-        * @return      void
-        */
-       public final function setUpdateInstance (LocalUpdateCriteria $updateInstance) {
-               $this->updateInstance = $updateInstance;
-       }
-
-       /**
-        * Getter for update instance
-        *
-        * @return      $updateInstance         Updateable criteria instance
-        */
-       public final function getUpdateInstance () {
-               return $this->updateInstance;
-       }
-
-       /**
-        * Setter for resolver instance
-        *
-        * @param       $resolverInstance       Instance of a command resolver class
-        * @return      void
-        */
-       public final function setResolverInstance (Resolver $resolverInstance) {
-               $this->resolverInstance = $resolverInstance;
-       }
-
-       /**
-        * Getter for resolver instance
-        *
-        * @return      $resolverInstance       Instance of a command resolver class
-        */
-       public final function getResolverInstance () {
-               return $this->resolverInstance;
-       }
-
-       /**
-        * Setter for language instance
-        *
-        * @param       $configInstance         The configuration instance which shall
-        *                                                              be FrameworkConfiguration
-        * @return      void
-        */
-       public final function setConfigInstance (FrameworkConfiguration $configInstance) {
-               Registry::getRegistry()->addInstance('config', $configInstance);
-       }
-
-       /**
-        * Getter for configuration instance
-        *
-        * @return      $configInstance         Configuration instance
-        */
-       public final function getConfigInstance () {
-               $configInstance = Registry::getRegistry()->getInstance('config');
-               return $configInstance;
-       }
-
-       /**
-        * Setter for debug instance
-        *
-        * @param       $debugInstance  The instance for debug output class
-        * @return      void
-        */
-       public final function setDebugInstance (DebugMiddleware $debugInstance) {
-               Registry::getRegistry()->addInstance('debug', $debugInstance);
-       }
-
-       /**
-        * Getter for debug instance
-        *
-        * @return      $debugInstance  Instance to class DebugConsoleOutput or DebugWebOutput
-        */
-       public final function getDebugInstance () {
-               // Get debug instance
-               $debugInstance = Registry::getRegistry()->getInstance('debug');
-
-               // Return it
-               return $debugInstance;
-       }
-
-       /**
-        * Setter for web output instance
-        *
-        * @param       $webInstance    The instance for web output class
-        * @return      void
-        */
-       public final function setWebOutputInstance (OutputStreamer $webInstance) {
-               Registry::getRegistry()->addInstance('web_output', $webInstance);
-       }
-
-       /**
-        * Getter for web output instance
-        *
-        * @return      $webOutputInstance - Instance to class WebOutput
-        */
-       public final function getWebOutputInstance () {
-               $webOutputInstance = Registry::getRegistry()->getInstance('web_output');
-               return $webOutputInstance;
-       }
-
-       /**
-        * Setter for database instance
-        *
-        * @param       $databaseInstance       The instance for the database connection (forced DatabaseConnection)
-        * @return      void
-        */
-       public final function setDatabaseInstance (DatabaseConnection $databaseInstance) {
-               Registry::getRegistry()->addInstance('db_instance', $databaseInstance);
-       }
-
-       /**
-        * Getter for database layer
-        *
-        * @return      $databaseInstance       The database layer instance
-        */
-       public final function getDatabaseInstance () {
-               // Get instance
-               $databaseInstance = Registry::getRegistry()->getInstance('db_instance');
-
-               // Return instance
-               return $databaseInstance;
-       }
-
-       /**
-        * Setter for compressor channel
-        *
-        * @param       $compressorInstance             An instance of CompressorChannel
-        * @return      void
-        */
-       public final function setCompressorChannel (CompressorChannel $compressorInstance) {
-               Registry::getRegistry()->addInstance('compressor', $compressorInstance);
-       }
-
-       /**
-        * Getter for compressor channel
-        *
-        * @return      $compressorInstance             The compressor channel
-        */
-       public final function getCompressorChannel () {
-               $compressorInstance = Registry::getRegistry()->getInstance('compressor');
-               return $compressorInstance;
-       }
-
-       /**
-        * Protected getter for a manageable application helper class
-        *
-        * @return      $applicationInstance    An instance of a manageable application helper class
-        */
-       protected final function getApplicationInstance () {
-               $applicationInstance = Registry::getRegistry()->getInstance('app');
-               return $applicationInstance;
-       }
-
-       /**
-        * Setter for a manageable application helper class
-        *
-        * @param       $applicationInstance    An instance of a manageable application helper class
-        * @return      void
-        */
-       public final function setApplicationInstance (ManageableApplication $applicationInstance) {
-               Registry::getRegistry()->addInstance('application', $applicationInstance);
-       }
-
-       /**
-        * Private getter for language instance
-        *
-        * @return      $langInstance   An instance to the language sub-system
-        */
-       protected final function getLanguageInstance () {
-               $langInstance = Registry::getRegistry()->getInstance('language');
-               return $langInstance;
-       }
-
-       /**
-        * Setter for language instance
-        *
-        * @param       $langInstance   An instance to the language sub-system
-        * @return      void
-        * @see         LanguageSystem
-        */
-       public final function setLanguageInstance (ManageableLanguage $langInstance) {
-               Registry::getRegistry()->addInstance('language', $langInstance);
-       }
-
-       /**
-        * Private getter for file IO instance
-        *
-        * @return      $fileIoInstance         An instance to the file I/O sub-system
-        */
-       protected final function getFileIoInstance () {
-               return $this->fileIoInstance;
-       }
-
-       /**
-        * Setter for file I/O instance
-        *
-        * @param       $fileIoInstance         An instance to the file I/O sub-system
-        * @return      void
-        */
-       public final function setFileIoInstance (IoHandler $fileIoInstance) {
-               $this->fileIoInstance = $fileIoInstance;
-       }
-
-       /**
-        * Protected setter for user instance
-        *
-        * @param       $userInstance   An instance of a user class
-        * @return      void
-        */
-       protected final function setUserInstance (ManageableAccount $userInstance) {
-               $this->userInstance = $userInstance;
-       }
-
-       /**
-        * Getter for user instance
-        *
-        * @return      $userInstance   An instance of a user class
-        */
-       public final function getUserInstance () {
-               return $this->userInstance;
-       }
-
-       /**
-        * Setter for controller instance (this surely breaks a bit the MVC patterm)
-        *
-        * @param       $controllerInstance             An instance of the controller
-        * @return      void
-        */
-       public final function setControllerInstance (Controller $controllerInstance) {
-               $this->controllerInstance = $controllerInstance;
-       }
-
-       /**
-        * Getter for controller instance (this surely breaks a bit the MVC patterm)
-        *
-        * @return      $controllerInstance             An instance of the controller
-        */
-       public final function getControllerInstance () {
-               return $this->controllerInstance;
-       }
-
-       /**
-        * Setter for RNG instance
-        *
-        * @param       $rngInstance    An instance of a random number generator (RNG)
-        * @return      void
-        */
-       protected final function setRngInstance (RandomNumberGenerator $rngInstance) {
-               $this->rngInstance = $rngInstance;
-       }
-
-       /**
-        * Getter for RNG instance
-        *
-        * @return      $rngInstance    An instance of a random number generator (RNG)
-        */
-       public final function getRngInstance () {
-               return $this->rngInstance;
-       }
-
-       /**
-        * Setter for Cryptable instance
-        *
-        * @param       $cryptoInstance An instance of a Cryptable class
-        * @return      void
-        */
-       protected final function setCryptoInstance (Cryptable $cryptoInstance) {
-               $this->cryptoInstance = $cryptoInstance;
-       }
-
-       /**
-        * Getter for Cryptable instance
-        *
-        * @return      $cryptoInstance An instance of a Cryptable class
-        */
-       public final function getCryptoInstance () {
-               return $this->cryptoInstance;
-       }
-
-       /**
-        * Setter for the list instance
-        *
-        * @param       $listInstance   A list of Listable
-        * @return      void
-        */
-       protected final function setListInstance (Listable $listInstance) {
-               $this->listInstance = $listInstance;
-       }
-
-       /**
-        * Getter for the list instance
-        *
-        * @return      $listInstance   A list of Listable
-        */
-       protected final function getListInstance () {
-               return $this->listInstance;
-       }
-
-       /**
-        * Setter for the menu instance
-        *
-        * @param       $menuInstance   A RenderableMenu instance
-        * @return      void
-        */
-       protected final function setMenuInstance (RenderableMenu $menuInstance) {
-               $this->menuInstance = $menuInstance;
-       }
-
-       /**
-        * Getter for the menu instance
-        *
-        * @return      $menuInstance   A RenderableMenu instance
-        */
-       protected final function getMenuInstance () {
-               return $this->menuInstance;
-       }
-
-       /**
-        * Setter for image instance
-        *
-        * @param       $imageInstance  An instance of an image
-        * @return      void
-        */
-       public final function setImageInstance (BaseImage $imageInstance) {
-               $this->imageInstance = $imageInstance;
-       }
-
-       /**
-        * Getter for image instance
-        *
-        * @return      $imageInstance  An instance of an image
-        */
-       public final function getImageInstance () {
-               return $this->imageInstance;
-       }
-
-       /**
-        * Setter for stacker instance
-        *
-        * @param       $stackInstance  An instance of an stacker
-        * @return      void
-        */
-       public final function setStackInstance (Stackable $stackInstance) {
-               $this->stackInstance = $stackInstance;
-       }
-
-       /**
-        * Getter for stacker instance
-        *
-        * @return      $stackInstance  An instance of an stacker
-        */
-       public final function getStackInstance () {
-               return $this->stackInstance;
-       }
-
-       /**
-        * Setter for compressor instance
-        *
-        * @param       $compressorInstance     An instance of an compressor
-        * @return      void
-        */
-       public final function setCompressorInstance (Compressor $compressorInstance) {
-               $this->compressorInstance = $compressorInstance;
-       }
-
-       /**
-        * Getter for compressor instance
-        *
-        * @return      $compressorInstance     An instance of an compressor
-        */
-       public final function getCompressorInstance () {
-               return $this->compressorInstance;
-       }
-
-       /**
-        * Setter for Parseable instance
-        *
-        * @param       $parserInstance An instance of an Parseable
-        * @return      void
-        */
-       public final function setParserInstance (Parseable $parserInstance) {
-               $this->parserInstance = $parserInstance;
-       }
-
-       /**
-        * Getter for Parseable instance
-        *
-        * @return      $parserInstance An instance of an Parseable
-        */
-       public final function getParserInstance () {
-               return $this->parserInstance;
-       }
-
-       /**
-        * Setter for HandleableProtocol instance
-        *
-        * @param       $protocolInstance       An instance of an HandleableProtocol
-        * @return      void
-        */
-       public final function setProtocolInstance (HandleableProtocol $protocolInstance) {
-               $this->protocolInstance = $protocolInstance;
-       }
-
-       /**
-        * Getter for HandleableProtocol instance
-        *
-        * @return      $protocolInstance       An instance of an HandleableProtocol
-        */
-       public final function getProtocolInstance () {
-               return $this->protocolInstance;
-       }
-
-       /**
-        * Setter for DatabaseWrapper instance
-        *
-        * @param       $wrapperInstance        An instance of an DatabaseWrapper
-        * @return      void
-        */
-       public final function setWrapperInstance (DatabaseWrapper $wrapperInstance) {
-               $this->wrapperInstance = $wrapperInstance;
-       }
-
-       /**
-        * Getter for DatabaseWrapper instance
-        *
-        * @return      $wrapperInstance        An instance of an DatabaseWrapper
-        */
-       public final function getWrapperInstance () {
-               return $this->wrapperInstance;
-       }
-
-       /**
-        * Setter for socket resource
-        *
-        * @param       $socketResource         A valid socket resource
-        * @return      void
-        */
-       public final function setSocketResource ($socketResource) {
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': socketResource=' . $socketResource . ',previous[' . gettype($this->socketResource) . ']=' . $this->socketResource);
-               $this->socketResource = $socketResource;
-       }
-
-       /**
-        * Getter for socket resource
-        *
-        * @return      $socketResource         A valid socket resource
-        */
-       public final function getSocketResource () {
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': socketResource[' . gettype($this->socketResource) . ']=' . $this->socketResource);
-               return $this->socketResource;
-       }
-
-       /**
-        * Setter for regular expression
-        *
-        * @param       $regularExpression      A valid regular expression
-        * @return      void
-        */
-       public final function setRegularExpression ($regularExpression) {
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': regularExpression=' . $regularExpression . ',previous[' . gettype($this->regularExpression) . ']=' . $this->regularExpression);
-               $this->regularExpression = $regularExpression;
-       }
-
-       /**
-        * Getter for regular expression
-        *
-        * @return      $regularExpression      A valid regular expression
-        */
-       public final function getRegularExpression () {
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': regularExpression[' . gettype($this->regularExpression) . ']=' . $this->regularExpression);
-               return $this->regularExpression;
-       }
-
-       /**
-        * Setter for helper instance
-        *
-        * @param       $helperInstance         An instance of a helper class
-        * @return      void
-        */
-       protected final function setHelperInstance (Helper $helperInstance) {
-               $this->helperInstance = $helperInstance;
-       }
-
-       /**
-        * Getter for helper instance
-        *
-        * @return      $helperInstance         An instance of a helper class
-        */
-       public final function getHelperInstance () {
-               return $this->helperInstance;
-       }
-
-       /**
-        * Setter for a Source instance
-        *
-        * @param       $sourceInstance         An instance of a Source class
-        * @return      void
-        */
-       protected final function setSourceInstance (Source $sourceInstance) {
-               $this->sourceInstance = $sourceInstance;
-       }
-
-       /**
-        * Getter for a Source instance
-        *
-        * @return      $sourceInstance         An instance of a Source class
-        */
-       protected final function getSourceInstance () {
-               return $this->sourceInstance;
-       }
-
-       /**
-        * Setter for a UrlSource instance
-        *
-        * @param       $sourceInstance         An instance of a UrlSource class
-        * @return      void
-        */
-       protected final function setUrlSourceInstance (UrlSource $urlSourceInstance) {
-               $this->urlSourceInstance = $urlSourceInstance;
-       }
-
-       /**
-        * Getter for a UrlSource instance
-        *
-        * @return      $urlSourceInstance              An instance of a UrlSource class
-        */
-       protected final function getUrlSourceInstance () {
-               return $this->urlSourceInstance;
-       }
-
-       /**
-        * Getter for a InputStream instance
-        *
-        * @param       $inputStreamInstance    The InputStream instance
-        */
-       protected final function getInputStreamInstance () {
-               return $this->inputStreamInstance;
-       }
-
-       /**
-        * Setter for a InputStream instance
-        *
-        * @param       $inputStreamInstance    The InputStream instance
-        * @return      void
-        */
-       protected final function setInputStreamInstance (InputStream $inputStreamInstance) {
-               $this->inputStreamInstance = $inputStreamInstance;
-       }
-
-       /**
-        * Getter for a OutputStream instance
-        *
-        * @param       $outputStreamInstance   The OutputStream instance
-        */
-       protected final function getOutputStreamInstance () {
-               return $this->outputStreamInstance;
-       }
-
-       /**
-        * Setter for a OutputStream instance
-        *
-        * @param       $outputStreamInstance   The OutputStream instance
-        * @return      void
-        */
-       protected final function setOutputStreamInstance (OutputStream $outputStreamInstance) {
-               $this->outputStreamInstance = $outputStreamInstance;
-       }
-
-       /**
-        * Setter for handler instance
-        *
-        * @param       $handlerInstance        An instance of a Handleable class
-        * @return      void
-        */
-       protected final function setHandlerInstance (Handleable $handlerInstance) {
-               $this->handlerInstance = $handlerInstance;
-       }
-
-       /**
-        * Getter for handler instance
-        *
-        * @return      $handlerInstance        A Handleable instance
-        */
-       protected final function getHandlerInstance () {
-               return $this->handlerInstance;
-       }
-
-       /**
-        * Setter for visitor instance
-        *
-        * @param       $visitorInstance        A Visitor instance
-        * @return      void
-        */
-       protected final function setVisitorInstance (Visitor $visitorInstance) {
-               $this->visitorInstance = $visitorInstance;
+               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
 
        /**
-        * Getter for visitor instance
+        * Setter for the real class name
         *
-        * @return      $visitorInstance        A Visitor instance
+        * @param       $realClass      Class name (string)
+        * @return      void
         */
-       protected final function getVisitorInstance () {
-               return $this->visitorInstance;
+       public final function setRealClass ($realClass) {
+               // Set real class
+               $this->realClass = (string) $realClass;
        }
 
        /**
-        * Setter for DHT instance
+        * Setter for database result instance
         *
-        * @param       $dhtInstance    A Distributable instance
+        * @param       $resultInstance         An instance of a database result class
         * @return      void
+        * @todo        SearchableResult and UpdateableResult shall have a super interface to use here
         */
-       protected final function setDhtInstance (Distributable $dhtInstance) {
-               $this->dhtInstance = $dhtInstance;
+       protected final function setResultInstance (SearchableResult $resultInstance) {
+               $this->resultInstance =  $resultInstance;
        }
 
        /**
-        * Getter for DHT instance
+        * Getter for database result instance
         *
-        * @return      $dhtInstance    A Distributable instance
+        * @return      $resultInstance         An instance of a database result class
         */
-       protected final function getDhtInstance () {
-               return $this->dhtInstance;
+       public final function getResultInstance () {
+               return $this->resultInstance;
        }
 
        /**
-        * Setter for raw package Data
+        * Setter for debug instance
         *
-        * @param       $packageData    Raw package Data
+        * @param       $debugInstance  The instance for debug output class
         * @return      void
         */
-       public final function setPackageData (array $packageData) {
-               $this->packageData = $packageData;
+       public final function setDebugInstance (DebugMiddleware $debugInstance) {
+               GenericRegistry::getRegistry()->addInstance('debug', $debugInstance);
        }
 
        /**
-        * Getter for raw package Data
+        * Getter for debug instance
         *
-        * @return      $packageData    Raw package Data
+        * @return      $debugInstance  Instance to class DebugConsoleOutput or DebugWebOutput
         */
-       public function getPackageData () {
-               return $this->packageData;
-       }
-
+       public final function getDebugInstance () {
+               // Get debug instance
+               $debugInstance = GenericRegistry::getRegistry()->getInstance('debug');
 
-       /**
-        * Setter for Iterator instance
-        *
-        * @param       $iteratorInstance       An instance of an Iterator
-        * @return      void
-        */
-       protected final function setIteratorInstance (Iterator $iteratorInstance) {
-               $this->iteratorInstance = $iteratorInstance;
+               // Return it
+               return $debugInstance;
        }
 
        /**
-        * Getter for Iterator instance
+        * Setter for web output instance
         *
-        * @return      $iteratorInstance       An instance of an Iterator
+        * @param       $webInstance    The instance for web output class
+        * @return      void
         */
-       public final function getIteratorInstance () {
-               return $this->iteratorInstance;
+       public final function setWebOutputInstance (OutputStreamer $webInstance) {
+               GenericRegistry::getRegistry()->addInstance('web_output', $webInstance);
        }
 
        /**
-        * Setter for FilePointer instance
+        * Getter for web output instance
         *
-        * @param       $pointerInstance        An instance of an FilePointer class
-        * @return      void
+        * @return      $webOutputInstance - Instance to class WebOutput
         */
-       protected final function setPointerInstance (FilePointer $pointerInstance) {
-               $this->pointerInstance = $pointerInstance;
+       public final function getWebOutputInstance () {
+               $webOutputInstance = GenericRegistry::getRegistry()->getInstance('web_output');
+               return $webOutputInstance;
        }
 
        /**
-        * Getter for FilePointer instance
+        * Private getter for language instance
         *
-        * @return      $pointerInstance        An instance of an FilePointer class
+        * @return      $langInstance   An instance to the language sub-system
         */
-       public final function getPointerInstance () {
-               return $this->pointerInstance;
+       protected final function getLanguageInstance () {
+               $langInstance = GenericRegistry::getRegistry()->getInstance('language');
+               return $langInstance;
        }
 
        /**
-        * Unsets pointer instance which triggers a call of __destruct() if the
-        * instance is still there. This is surely not fatal on already "closed"
-        * file pointer instances.
-        *
-        * I don't want to mess around with above setter by giving it a default
-        * value NULL as setter should always explicitly only set (existing) object
-        * instances and NULL is NULL.
+        * Setter for language instance
         *
+        * @param       $langInstance   An instance to the language sub-system
         * @return      void
+        * @see         LanguageSystem
         */
-       protected final function unsetPointerInstance () {
-               // Simply it to NULL
-               $this->pointerInstance = NULL;
+       public final function setLanguageInstance (ManageableLanguage $langInstance) {
+               GenericRegistry::getRegistry()->addInstance('language', $langInstance);
        }
 
        /**
-        * Setter for Indexable instance
+        * Protected setter for user instance
         *
-        * @param       $indexInstance  An instance of an Indexable class
+        * @param       $userInstance   An instance of a user class
         * @return      void
         */
-       protected final function setIndexInstance (Indexable $indexInstance) {
-               $this->indexInstance = $indexInstance;
+       protected final function setUserInstance (ManageableAccount $userInstance) {
+               $this->userInstance = $userInstance;
        }
 
        /**
-        * Getter for Indexable instance
+        * Getter for user instance
         *
-        * @return      $indexInstance  An instance of an Indexable class
+        * @return      $userInstance   An instance of a user class
         */
-       public final function getIndexInstance () {
-               return $this->indexInstance;
+       public final function getUserInstance () {
+               return $this->userInstance;
        }
 
        /**
-        * Setter for Block instance
+        * Setter for Cryptable instance
         *
-        * @param       $blockInstance  An instance of an Block class
+        * @param       $cryptoInstance An instance of a Cryptable class
         * @return      void
         */
-       protected final function setBlockInstance (Block $blockInstance) {
-               $this->blockInstance = $blockInstance;
+       protected final function setCryptoInstance (Cryptable $cryptoInstance) {
+               $this->cryptoInstance = $cryptoInstance;
        }
 
        /**
-        * Getter for Block instance
+        * Getter for Cryptable instance
         *
-        * @return      $blockInstance  An instance of an Block class
+        * @return      $cryptoInstance An instance of a Cryptable class
         */
-       public final function getBlockInstance () {
-               return $this->blockInstance;
+       public final function getCryptoInstance () {
+               return $this->cryptoInstance;
        }
 
        /**
-        * Setter for Minable instance
+        * Setter for DatabaseWrapper instance
         *
-        * @param       $minableInstance        A Minable instance
+        * @param       $wrapperInstance        An instance of an DatabaseWrapper
         * @return      void
         */
-       protected final function setMinableInstance (Minable $minableInstance) {
-               $this->minableInstance = $minableInstance;
+       public final function setWrapperInstance (DatabaseWrapper $wrapperInstance) {
+               $this->wrapperInstance = $wrapperInstance;
        }
 
        /**
-        * Getter for minable instance
+        * Getter for DatabaseWrapper instance
         *
-        * @return      $minableInstance        A Minable instance
+        * @return      $wrapperInstance        An instance of an DatabaseWrapper
         */
-       protected final function getMinableInstance () {
-               return $this->minableInstance;
+       public final function getWrapperInstance () {
+               return $this->wrapperInstance;
        }
 
        /**
-        * Setter for FrameworkDirectory instance
+        * Setter for helper instance
         *
-        * @param       $directoryInstance      A FrameworkDirectory instance
+        * @param       $helperInstance         An instance of a helper class
         * @return      void
         */
-       protected final function setDirectoryInstance (FrameworkDirectory $directoryInstance) {
-               $this->directoryInstance = $directoryInstance;
+       protected final function setHelperInstance (Helper $helperInstance) {
+               $this->helperInstance = $helperInstance;
        }
 
        /**
-        * Getter for FrameworkDirectory instance
+        * Getter for helper instance
         *
-        * @return      $directoryInstance      A FrameworkDirectory instance
+        * @return      $helperInstance         An instance of a helper class
         */
-       protected final function getDirectoryInstance () {
-               return $this->directoryInstance;
+       public final function getHelperInstance () {
+               return $this->helperInstance;
        }
 
        /**
-        * Getter for communicator instance
+        * Getter for a InputStream instance
         *
-        * @return      $communicatorInstance   An instance of a Communicator class
+        * @param       $inputStreamInstance    The InputStream instance
         */
-       public final function getCommunicatorInstance () {
-               return $this->communicatorInstance;
+       protected final function getInputStreamInstance () {
+               return $this->inputStreamInstance;
        }
 
        /**
-        * Setter for communicator instance
+        * Setter for a InputStream instance
         *
-        * @param       $communicatorInstance   An instance of a Communicator class
+        * @param       $inputStreamInstance    The InputStream instance
         * @return      void
         */
-       protected final function setCommunicatorInstance (Communicator $communicatorInstance) {
-               $this->communicatorInstance = $communicatorInstance;
+       protected final function setInputStreamInstance (InputStream $inputStreamInstance) {
+               $this->inputStreamInstance = $inputStreamInstance;
        }
 
        /**
-        * Setter for state instance
+        * Getter for a OutputStream instance
         *
-        * @param       $stateInstance  A Stateable instance
-        * @return      void
+        * @param       $outputStreamInstance   The OutputStream instance
         */
-       public final function setStateInstance (Stateable $stateInstance) {
-               $this->stateInstance = $stateInstance;
+       protected final function getOutputStreamInstance () {
+               return $this->outputStreamInstance;
        }
 
        /**
-        * Getter for state instance
+        * Setter for a OutputStream instance
         *
-        * @return      $stateInstance  A Stateable instance
+        * @param       $outputStreamInstance   The OutputStream instance
+        * @return      void
         */
-       public final function getStateInstance () {
-               return $this->stateInstance;
+       protected final function setOutputStreamInstance (OutputStream $outputStreamInstance) {
+               $this->outputStreamInstance = $outputStreamInstance;
        }
 
        /**
-        * Setter for output instance
+        * Setter for handler instance
         *
-        * @param       $outputInstance The debug output instance
+        * @param       $handlerInstance        An instance of a Handleable class
         * @return      void
         */
-       public final function setOutputInstance (OutputStreamer $outputInstance) {
-               $this->outputInstance = $outputInstance;
+       protected final function setHandlerInstance (Handleable $handlerInstance) {
+               $this->handlerInstance = $handlerInstance;
        }
 
        /**
-        * Getter for output instance
+        * Getter for handler instance
         *
-        * @return      $outputInstance The debug output instance
+        * @return      $handlerInstance        A Handleable instance
         */
-       public final function getOutputInstance () {
-               return $this->outputInstance;
+       protected final function getHandlerInstance () {
+               return $this->handlerInstance;
        }
 
        /**
-        * Setter for command name
+        * Setter for Iterator instance
         *
-        * @param       $commandName    Last validated command name
+        * @param       $iteratorInstance       An instance of an Iterator
         * @return      void
         */
-       protected final function setCommandName ($commandName) {
-               $this->commandName = $commandName;
+       protected final function setIteratorInstance (Iterator $iteratorInstance) {
+               $this->iteratorInstance = $iteratorInstance;
        }
 
        /**
-        * Getter for command name
+        * Getter for Iterator instance
         *
-        * @return      $commandName    Last validated command name
+        * @return      $iteratorInstance       An instance of an Iterator
         */
-       protected final function getCommandName () {
-               return $this->commandName;
+       public final function getIteratorInstance () {
+               return $this->iteratorInstance;
        }
 
        /**
-        * Setter for controller name
+        * Setter for state instance
         *
-        * @param       $controllerName Last validated controller name
+        * @param       $stateInstance  A Stateable instance
         * @return      void
         */
-       protected final function setControllerName ($controllerName) {
-               $this->controllerName = $controllerName;
+       public final function setStateInstance (Stateable $stateInstance) {
+               $this->stateInstance = $stateInstance;
        }
 
        /**
-        * Getter for controller name
+        * Getter for state instance
         *
-        * @return      $controllerName Last validated controller name
+        * @return      $stateInstance  A Stateable instance
         */
-       protected final function getControllerName () {
-               return $this->controllerName;
+       public final function getStateInstance () {
+               return $this->stateInstance;
        }
 
        /**
-        * Getter for protocol name
+        * Setter for call-back instance
         *
-        * @return      $protocolName   Name of used protocol
+        * @param       $callbackInstance       An instance of a FrameworkInterface class
+        * @return      void
         */
-       public final function getProtocolName () {
-               return $this->protocolName;
+       public final function setCallbackInstance (FrameworkInterface $callbackInstance) {
+               $this->callbackInstance = $callbackInstance;
        }
 
        /**
-        * Setter for protocol name
+        * Getter for call-back instance
         *
-        * @param       $protocolName   Name of used protocol
-        * @return      void
+        * @return      $callbackInstance       An instance of a FrameworkInterface class
         */
-       protected final function setProtocolName ($protocolName) {
-               $this->protocolName = $protocolName;
+       protected final function getCallbackInstance () {
+               return $this->callbackInstance;
        }
 
        /**
@@ -1664,35 +756,6 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                return crc32($this->__toString());
        }
 
-       /**
-        * Formats computer generated price values into human-understandable formats
-        * with thousand and decimal separators.
-        *
-        * @param       $value          The in computer format value for a price
-        * @param       $currency       The currency symbol (use HTML-valid characters!)
-        * @param       $decNum         Number of decimals after commata
-        * @return      $price          The for the current language formated price string
-        * @throws      MissingDecimalsThousandsSeparatorException      If decimals or
-        *                                                                                              thousands separator
-        *                                                                                              is missing
-        */
-       public function formatCurrency ($value, $currency = '&euro;', $decNum = 2) {
-               // Are all required attriutes set?
-               if ((!isset($this->decimals)) || (!isset($this->thousands))) {
-                       // Throw an exception
-                       throw new MissingDecimalsThousandsSeparatorException($this, self::EXCEPTION_ATTRIBUTES_ARE_MISSING);
-               } // END - if
-
-               // Cast the number
-               $value = (float) $value;
-
-               // Reformat the US number
-               $price = number_format($value, $decNum, $this->decimals, $this->thousands) . $currency;
-
-               // Return as string...
-               return $price;
-       }
-
        /**
         * Appends a trailing slash to a string
         *
@@ -1709,36 +772,6 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                return $str;
        }
 
-       /**
-        * Prepare the template engine (HtmlTemplateEngine by default) for a given
-        * application helper instance (ApplicationHelper by default).
-        *
-        * @param               $applicationInstance    An application helper instance or
-        *                                                                              null if we shall use the default
-        * @return              $templateInstance               The template engine instance
-        * @throws              NullPointerException    If the discovered application
-        *                                                                              instance is still null
-        */
-       protected function prepareTemplateInstance (ManageableApplication $applicationInstance = NULL) {
-               // Is the application instance set?
-               if (is_null($applicationInstance)) {
-                       // Get the current instance
-                       $applicationInstance = Registry::getRegistry()->getInstance('app');
-
-                       // Still null?
-                       if (is_null($applicationInstance)) {
-                               // Thrown an exception
-                               throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
-                       } // END - if
-               } // END - if
-
-               // Initialize the template engine
-               $templateInstance = ObjectFactory::createObjectByConfiguredName('html_template_class');
-
-               // Return the prepared instance
-               return $templateInstance;
-       }
-
        /**
         * Debugs this instance by putting out it's full content
         *
@@ -1755,7 +788,9 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                // Is a message set?
                if (!empty($message)) {
                        // Construct message
-                       $content = sprintf('<div class="debug_message">Message: %s</div>' . PHP_EOL, $message);
+                       $content = sprintf('<div class="debug_message">
+       Message: %s
+</div>' . PHP_EOL, $message);
                } // END - if
 
                // Generate the output
@@ -1768,7 +803,16 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                );
 
                // Output it
-               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>',
+               ApplicationEntryPoint::exitApplication(sprintf('<div class="debug_header">
+       %s debug output:
+</div>
+<div class="debug_content">
+       %s
+</div>
+Loaded includes:
+<div class="debug_include_list">
+       %s
+</div>',
                        $this->__toString(),
                        $content,
                        ClassLoader::getSelfInstance()->getPrintableIncludeList()
@@ -1801,21 +845,10 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         * @return      void
         */
        protected function partialStub ($message = '') {
-               // Get the backtrace
-               $backtrace = debug_backtrace();
-
-               // Generate the class::method string
-               $methodName = 'UnknownClass-&gt;unknownMethod';
-               if ((isset($backtrace[1]['class'])) && (isset($backtrace[1]['function']))) {
-                       $methodName = $backtrace[1]['class'] . '-&gt;' . $backtrace[1]['function'];
-               } // END - if
-
-               // Construct the full message
-               $stubMessage = sprintf('[%s:] Partial stub!',
-                       $methodName
-               );
+               // Init variable
+               $stubMessage = 'Partial stub!';
 
-               // Is the extra message given?
+               // Is an extra message given?
                if (!empty($message)) {
                        // Then add it as well
                        $stubMessage .= ' Message: ' . $message;
@@ -1866,14 +899,14 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        public final static function createDebugInstance ($className, $lineNumber = NULL) {
                // Is the instance set?
-               if (!Registry::getRegistry()->instanceExists('debug')) {
+               if (!GenericRegistry::getRegistry()->instanceExists('debug')) {
                        // Init debug instance
                        $debugInstance = NULL;
 
                        // Try it
                        try {
                                // Get a debugger instance
-                               $debugInstance = DebugMiddleware::createDebugMiddleware(FrameworkConfiguration::getSelfInstance()->getConfigEntry('debug_' . FrameworkBootstrap::getRequestTypeFromSystem() . '_class'), $className);
+                               $debugInstance = DebugMiddleware::createDebugMiddleware(FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('debug_' . FrameworkBootstrap::getRequestTypeFromSystem() . '_class'), $className);
                        } catch (NullPointerException $e) {
                                // Didn't work, no instance there
                                exit(sprintf('Cannot create debugInstance! Exception=%s,message=%s,className=%s,lineNumber=%d' . PHP_EOL, $e->__toString(), $e->getMessage(), $className, $lineNumber));
@@ -1882,11 +915,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        // Empty string should be ignored and used for testing the middleware
                        DebugMiddleware::getSelfInstance()->output('');
 
-                       // Set it in its own class. This will set it in the registry
-                       $debugInstance->setDebugInstance($debugInstance);
+                       // Set it in registry
+                       GenericRegistry::getRegistry()->addInstance('debug', $debugInstance);
                } else {
                        // Get instance from registry
-                       $debugInstance = Registry::getRegistry()->getDebugInstance();
+                       $debugInstance = GenericRegistry::getRegistry()->getDebugInstance();
                }
 
                // Return it
@@ -1918,6 +951,28 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                // Set debug instance to NULL
                $debugInstance = NULL;
 
+               // Get backtrace
+               $backtrace = debug_backtrace(!DEBUG_BACKTRACE_PROVIDE_OBJECT);
+
+               // Is function partialStub/__callStatic ?
+               if (in_array($backtrace[1]['function'], array('partialStub', '__call', '__callStatic'))) {
+                       // Prepend class::function:line from 3rd element
+                       $message = sprintf('[%s::%s:%d]: %s',
+                               $backtrace[2]['class'],
+                               $backtrace[2]['function'],
+                               (isset($backtrace[2]['line']) ? $backtrace[2]['line'] : '0'),
+                               $message
+                       );
+               } else {
+                       // Prepend class::function:line from 2nd element
+                       $message = sprintf('[%s::%s:%d]: %s',
+                               $backtrace[1]['class'],
+                               $backtrace[1]['function'],
+                               (isset($backtrace[1]['line']) ? $backtrace[1]['line'] : '0'),
+                               $message
+                       );
+               }
+
                // Try it:
                try {
                        // Get debug instance
@@ -1937,7 +992,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        } // END - if
                } else {
                        // Are debug times enabled?
-                       if ($this->getConfigInstance()->getConfigEntry('debug_' . FrameworkBootstrap::getRequestTypeFromSystem() . '_output_timings') == 'Y') {
+                       if (FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('debug_' . FrameworkBootstrap::getRequestTypeFromSystem() . '_output_timings') == 'Y') {
                                // Prepent it
                                $message = $this->getPrintableExecutionTime() . $message;
                        } // END - if
@@ -1953,43 +1008,6 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                }
        }
 
-       /**
-        * Converts e.g. a command from URL to a valid class by keeping out bad characters
-        *
-        * @param       $str            The string, what ever it is needs to be converted
-        * @return      $className      Generated class name
-        */
-       public static final function convertToClassName ($str) {
-               // Init class name
-               $className = '';
-
-               // Convert all dashes in underscores
-               $str = self::convertDashesToUnderscores($str);
-
-               // Now use that underscores to get classname parts for hungarian style
-               foreach (explode('_', $str) as $strPart) {
-                       // Make the class name part lower case and first upper case
-                       $className .= ucfirst(strtolower($strPart));
-               } // END - foreach
-
-               // Return class name
-               return $className;
-       }
-
-       /**
-        * Converts dashes to underscores, e.g. useable for configuration entries
-        *
-        * @param       $str    The string with maybe dashes inside
-        * @return      $str    The converted string with no dashed, but underscores
-        */
-       public static final function convertDashesToUnderscores ($str) {
-               // Convert them all
-               $str = str_replace('-', '_', $str);
-
-               // Return converted string
-               return $str;
-       }
-
        /**
         * Marks up the code by adding e.g. line numbers
         *
@@ -2052,7 +1070,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                                        $timeArray = explode(':', $dateTime[1]);
 
                                        // Construct the timestamp
-                                       $readable = sprintf($this->getConfigInstance()->getConfigEntry('german_date_time'),
+                                       $readable = sprintf(FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('german_date_time'),
                                                $dateArray[0],
                                                $dateArray[1],
                                                $dateArray[2],
@@ -2082,11 +1100,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                // Generate it from config and localize dependencies
                switch ($this->getLanguageInstance()->getLanguageCode()) {
                        case 'de': // German format is a bit different to default
-                               $localized = number_format($value, $this->getConfigInstance()->getConfigEntry('decimals'), ',', '.');
+                               $localized = number_format($value, FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('decimals'), ',', '.');
                                break;
 
                        default: // US, etc.
-                               $localized = number_format($value, $this->getConfigInstance()->getConfigEntry('decimals'), '.', ',');
+                               $localized = number_format($value, FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('decimals'), '.', ',');
                                break;
                } // END - switch
 
@@ -2134,7 +1152,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         * @return      $fieldValue             Field value from the user
         * @throws      NullPointerException    If the result instance is null
         */
-       public final function getField ($fieldName) {
+       public final function getField (string $fieldName) {
                // Default field value
                $fieldValue = NULL;
 
@@ -2152,7 +1170,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                //* DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($fieldName.':<pre>'.print_r($fieldArray, true).'</pre>');
 
                // Convert dashes to underscore
-               $fieldName2 = self::convertDashesToUnderscores($fieldName);
+               $fieldName2 = StringUtils::convertDashesToUnderscores($fieldName);
 
                // Does the field exist?
                if ($this->isFieldSet($fieldName)) {
@@ -2177,7 +1195,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         * @return      $isSet          Whether the given field name is set
         * @throws      NullPointerException    If the result instance is null
         */
-       public function isFieldSet ($fieldName) {
+       public function isFieldSet (string $fieldName) {
                // Get result instance
                $resultInstance = $this->getResultInstance();
 
@@ -2192,7 +1210,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . $this->__toString() . ':' . __LINE__ . '] fieldName=' . $fieldName . ',fieldArray=<pre>'.print_r($fieldArray, true).'</pre>');
 
                // Convert dashes to underscore
-               $fieldName = self::convertDashesToUnderscores($fieldName);
+               $fieldName = StringUtils::convertDashesToUnderscores($fieldName);
 
                // Determine it
                $isSet = isset($fieldArray[$fieldName]);
@@ -2303,143 +1321,6 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                // Return result
                return $hasSlept;
        }
-       /**
-        * Converts a hexadecimal string, even with negative sign as first string to
-        * a decimal number using BC functions.
-        *
-        * This work is based on comment #86673 on php.net documentation page at:
-        * <http://de.php.net/manual/en/function.dechex.php#86673>
-        *
-        * @param       $hex    Hexadecimal string
-        * @return      $dec    Decimal number
-        */
-       protected function hex2dec ($hex) {
-               // Convert to all lower-case
-               $hex = strtolower($hex);
-
-               // Detect sign (negative/positive numbers)
-               $sign = '';
-               if (substr($hex, 0, 1) == '-') {
-                       $sign = '-';
-                       $hex = substr($hex, 1);
-               } // END - if
-
-               // Decode the hexadecimal string into a decimal number
-               $dec = 0;
-               for ($i = strlen($hex) - 1, $e = 1; $i >= 0; $i--, $e = bcmul($e, 16)) {
-                       $factor = self::$hexdec[substr($hex, $i, 1)];
-                       $dec = bcadd($dec, bcmul($factor, $e));
-               } // END - for
-
-               // Return the decimal number
-               return $sign . $dec;
-       }
-
-       /**
-        * Converts even very large decimal numbers, also signed, to a hexadecimal
-        * string.
-        *
-        * This work is based on comment #97756 on php.net documentation page at:
-        * <http://de.php.net/manual/en/function.hexdec.php#97756>
-        *
-        * @param       $dec            Decimal number, even with negative sign
-        * @param       $maxLength      Optional maximum length of the string
-        * @return      $hex    Hexadecimal string
-        */
-       protected function dec2hex ($dec, $maxLength = 0) {
-               // maxLength can be zero or devideable by 2
-               assert(($maxLength == 0) || (($maxLength % 2) == 0));
-
-               // Detect sign (negative/positive numbers)
-               $sign = '';
-               if ($dec < 0) {
-                       $sign = '-';
-                       $dec = abs($dec);
-               } // END - if
-
-               // Encode the decimal number into a hexadecimal string
-               $hex = '';
-               do {
-                       $hex = self::$dechex[($dec % (2 ^ 4))] . $hex;
-                       $dec /= (2 ^ 4);
-               } while ($dec >= 1);
-
-               /*
-                * Leading zeros are required for hex-decimal "numbers". In some
-                * situations more leading zeros are wanted, so check for both
-                * conditions.
-                */
-               if ($maxLength > 0) {
-                       // Prepend more zeros
-                       $hex = str_pad($hex, $maxLength, '0', STR_PAD_LEFT);
-               } elseif ((strlen($hex) % 2) != 0) {
-                       // Only make string's length dividable by 2
-                       $hex = '0' . $hex;
-               }
-
-               // Return the hexadecimal string
-               return $sign . $hex;
-       }
-
-       /**
-        * Converts a ASCII string (0 to 255) into a decimal number.
-        *
-        * @param       $asc    The ASCII string to be converted
-        * @return      $dec    Decimal number
-        */
-       protected function asc2dec ($asc) {
-               // Convert it into a hexadecimal number
-               $hex = bin2hex($asc);
-
-               // And back into a decimal number
-               $dec = $this->hex2dec($hex);
-
-               // Return it
-               return $dec;
-       }
-
-       /**
-        * Converts a decimal number into an ASCII string.
-        *
-        * @param       $dec            Decimal number
-        * @return      $asc    An ASCII string
-        */
-       protected function dec2asc ($dec) {
-               // First convert the number into a hexadecimal string
-               $hex = $this->dec2hex($dec);
-
-               // Then convert it into the ASCII string
-               $asc = $this->hex2asc($hex);
-
-               // Return it
-               return $asc;
-       }
-
-       /**
-        * Converts a hexadecimal number into an ASCII string. Negative numbers
-        * are not allowed.
-        *
-        * @param       $hex    Hexadecimal string
-        * @return      $asc    An ASCII string
-        */
-       protected function hex2asc ($hex) {
-               // Check for length, it must be devideable by 2
-               //* DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('hex='.$hex);
-               assert((strlen($hex) % 2) == 0);
-
-               // Walk the string
-               $asc = '';
-               for ($idx = 0; $idx < strlen($hex); $idx+=2) {
-                       // Get the decimal number of the chunk
-                       $part = hexdec(substr($hex, $idx, 2));
-
-                       // Add it to the final string
-                       $asc .= chr($part);
-               } // END - for
-
-               // Return the final string
-               return $asc;
-       }
 
        /**
         * Checks whether the given encoded data was encoded with Base64
@@ -2464,13 +1345,14 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        protected function getCacheKeyByCriteria (Criteria $criteriaInstance, array $onlyKeys = array()) {
                // Generate it
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BASE-FRAMEWORK-SYSTEM: criteriaInstance=' . $criteriaInstance->__toString() . ',onlyKeys()=' . count($onlyKeys) . ' - CALLED!');
                $cacheKey = sprintf('%s@%s',
                        $this->__toString(),
                        $criteriaInstance->getCacheKey($onlyKeys)
                );
 
                // And return it
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($this->__toString() . ': cacheKey=' . $cacheKey);
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BASE-FRAMEWORK-SYSTEM: cacheKey=' . $cacheKey . ' - EXIT!');
                return $cacheKey;
        }
 
@@ -3178,7 +2060,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        protected function initWebOutputInstance () {
                // Get application instance
-               $applicationInstance = Registry::getRegistry()->getInstance('app');
+               $applicationInstance = GenericRegistry::getRegistry()->getInstance('application');
 
                // Init web output instance
                $outputInstance = ObjectFactory::createObjectByConfiguredName('output_class', array($applicationInstance));
@@ -3193,7 +2075,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         * @param       $boolean                Boolean value
         * @return      $translated             Translated boolean value
         */
-       public static final function translateBooleanToYesNo ($boolean) {
+       public static final function translateBooleanToYesNo (bool $boolean) {
                // Make sure it is really boolean
                assert(is_bool($boolean));
 
@@ -3204,104 +2086,36 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                return $translated;
        }
 
-       /**
-        * Encodes raw data (almost any type) by "serializing" it and then pack it
-        * into a "binary format".
-        *
-        * @param       $rawData        Raw data (almost any type)
-        * @return      $encoded        Encoded data
-        */
-       protected function encodeData ($rawData) {
-               // Make sure no objects or resources pass through
-               assert(!is_object($rawData));
-               assert(!is_resource($rawData));
-
-               // First "serialize" it (json_encode() is faster than serialize())
-               $encoded = $this->packString(json_encode($rawData));
-
-               // And return it
-               return $encoded;
-       }
-
-       /**
-        * Pack a string into a "binary format". Please execuse me that this is
-        * widely undocumented. :-(
-        *
-        * @param       $str            Unpacked string
-        * @return      $packed         Packed string
-        * @todo        Improve documentation
-        */
-       protected function packString ($str) {
-               // Debug message
-               //* NOISY-DEBUG */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('str=' . $str . ' - CALLED!');
-
-               // First compress the string (gzcompress is okay)
-               $str = gzcompress($str);
-
-               // Init variable
-               $packed = '';
-
-               // And start the "encoding" loop
-               for ($idx = 0; $idx < strlen($str); $idx += $this->packingData[$this->archArrayElement]['step']) {
-                       $big = 0;
-                       for ($i = 0; $i < $this->packingData[$this->archArrayElement]['step']; $i++) {
-                               $factor = ($this->packingData[$this->archArrayElement]['step'] - 1 - $i);
-
-                               if (($idx + $i) <= strlen($str)) {
-                                       $ord = ord(substr($str, ($idx + $i), 1));
-
-                                       $add = $ord * pow(256, $factor);
-
-                                       $big += $add;
-
-                                       //print 'idx=' . $idx . ',i=' . $i . ',ord=' . $ord . ',factor=' . $factor . ',add=' . $add . ',big=' . $big . PHP_EOL;
-                               } // END - if
-                       } // END - for
-
-                       $l = ($big & $this->packingData[$this->archArrayElement]['left']) >>$this->packingData[$this->archArrayElement]['factor'];
-                       $r = $big & $this->packingData[$this->archArrayElement]['right'];
-
-                       $chunk = str_pad(pack($this->packingData[$this->archArrayElement]['format'], $l, $r), 8, '0', STR_PAD_LEFT);
-                       //* NOISY-DEBUG */ print 'big=' . $big . ',chunk('.strlen($chunk) . ')='.md5($chunk).PHP_EOL;
-
-                       $packed .= $chunk;
-               } // END - for
-
-               // Return it
-               //* NOISY-DEBUG */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('packed=' . $packed . ' - EXIT!');
-               return $packed;
-       }
-
        /**
         * Creates a full-qualified file name (FQFN) for given file name by adding
         * a configured temporary file path to it.
         *
-        * @param       $fileName       Name for temporary file
-        * @return      $fqfn   Full-qualified file name
+        * @param       $infoInstance   An instance of a SplFileInfo class
+        * @return      $tempInstance   An instance of a SplFileInfo class (temporary file)
         * @throw       PathWriteProtectedException If the path in 'temp_file_path' is write-protected
         * @throws      FileIoException If the file cannot be written
         */
-        protected static function createTempPathForFile ($fileName) {
+        protected static function createTempPathForFile (SplFileInfo $infoInstance) {
                // Get config entry
-               $basePath = FrameworkConfiguration::getSelfInstance()->getConfigEntry('temp_file_path');
+               $basePath = FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('temp_file_path');
 
                // Is the path writeable?
                if (!is_writable($basePath)) {
                        // Path is write-protected
-                       throw new PathWriteProtectedException($fileName, self::EXCEPTION_PATH_CANNOT_BE_WRITTEN);
+                       throw new PathWriteProtectedException($infoInstance, self::EXCEPTION_PATH_CANNOT_BE_WRITTEN);
                } // END - if
 
                // Add it
-               $fqfn = $basePath . '/' . $fileName;
+               $tempInstance = new SplFileInfo($basePath . DIRECTORY_SEPARATOR . $infoInstance->getBasename());
 
                // Is it reachable?
-               if (!FrameworkBootstrap::isReachableFilePath($fqfn)) {
+               if (!FrameworkBootstrap::isReachableFilePath($tempInstance)) {
                        // Not reachable
-                       throw new FileIoException($fqfn, self::EXCEPTION_FILE_NOT_REACHABLE);
+                       throw new FileIoException($tempInstance, self::EXCEPTION_FILE_NOT_REACHABLE);
                } // END - if
 
                // Return it
-               return $fqfn;
+               return $tempInstance;
         }
 
        /**