Added a counter for all generated objects.
[core.git] / inc / classes / main / factories / class_BaseFactory.php
index 88b0ed407ec13de3a7d0b9215b7636325912bebc..3a89bac11fe335d4701061615be7fca82fff954d 100644 (file)
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
 class BaseFactory extends BaseFrameworkSystem {
+       /**
+        * Total objects generated
+        */
+       private static $total = 0;
+
+       /**
+        * Counter of all objects
+        */
+       private static $objectCounters = array();
+
        /**
         * Protected constructor
         *
@@ -32,6 +42,44 @@ class BaseFactory extends BaseFrameworkSystem {
                // 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++;
+
+               // 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 . "\n";
+               self::$objectCounters[$className]++;
+       }
+
+       /**
+        * Static getter for total object count
+        *
+        * @return      $total  Total amount of generated objects
+        */
+       public static final function getTotal () {
+               return self::$total;
+       }
+
+       /**
+        * Static getter for all object counters
+        *
+        * @return      $objectCounters         An array with all object counters
+        */
+       public static final function getAllCounters () {
+               return self::$objectCounters;
+       }
 }
 
 // [EOF]