Use PHP_EOL instead of chr(10)
[core.git] / inc / classes / main / factories / class_BaseFactory.php
index 3fd5510c674103f4472cd72df86ac138dbcd88ea..a6f20ee5cb6096026364a06f27d79681f3332725 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
  */
 class BaseFactory extends BaseFrameworkSystem {
        /**
-        * An instance of the real factory class
+        * Total objects generated
         */
-       private $realFactoryInstance = null;
+       private static $total = 0;
+
+       /**
+        * Counter of all objects
+        */
+       private static $objectCounters = array();
 
        /**
         * Protected constructor
@@ -36,29 +41,44 @@ class BaseFactory extends BaseFrameworkSystem {
        protected function __construct ($className) {
                // Call parent constructor
                parent::__construct($className);
+       }
+
+       /**
+        * Count given object
+        *
+        * @param       $className      Name of the class we shall count
+        */
+       protected static final function countObject ($className) {
+               // Count it up in total sum
+               self::$total++;
 
-               // Clean up a little
-               $this->removeNumberFormaters();
-               $this->removeSystemArray();
+               // Do we have an entry?
+               if (!isset(self::$objectCounters[$className])) {
+                       // No, then generate one
+                       self::$objectCounters[$className] = 0;
+               } // END - if
+
+               // Count it up again
+               //* NOISY-DEBUG: */ print __METHOD__.': className=' .$className . PHP_EOL;
+               self::$objectCounters[$className]++;
        }
 
        /**
-        * Setter for the *real* factory instance
+        * Static getter for total object count
         *
-        * @param       $realFactoryInstance    An instance of the real factory class
-        * @return      void
+        * @return      $total  Total amount of generated objects
         */
-       public final function setRealFactoryInstance (BaseFrameworkSystem $realFactoryInstance) {
-               $this->realFactoryInstance = $realFactoryInstance;
+       public static final function getTotal () {
+               return self::$total;
        }
 
        /**
-        * Getter for the *real* factory instance
+        * Static getter for all object counters
         *
-        * @return      $realFactoryInstance    An instance of the real factory class
+        * @return      $objectCounters         An array with all object counters
         */
-       protected final function getRealFactoryInstance () {
-               return $this->realFactoryInstance;
+       public static final function getAllCounters () {
+               return self::$objectCounters;
        }
 }