X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Ffactories%2Fobjects%2Fclass_ObjectFactory.php;h=a323b32a2959259584f625a41e6473c1b3544737;hp=7fe995509e3043368c476c95dd2bc0c1abfc21a4;hb=87dacf0cd1569f9ef85ce1f61003d3169feec6d2;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae diff --git a/inc/classes/main/factories/objects/class_ObjectFactory.php b/inc/classes/main/factories/objects/class_ObjectFactory.php index 7fe99550..a323b32a 100644 --- a/inc/classes/main/factories/objects/class_ObjectFactory.php +++ b/inc/classes/main/factories/objects/class_ObjectFactory.php @@ -2,11 +2,11 @@ /** * An general object factory * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007 - 2009 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team * @license GNU GPL 3.0 or any newer version - * @link http://www.ship-simu.org + * @link http://www.shipsimu.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -22,19 +22,15 @@ * along with this program. If not, see . */ class ObjectFactory extends BaseFactory { - /** - * Total objects generated - */ - private static $total = 0; - /** * Protected constructor * + * @param $className Name of this class * @return void */ - protected function __construct () { + protected function __construct ($className = __CLASS__) { // Call parent constructor - parent::__construct(__CLASS__); + parent::__construct($className); } /** @@ -45,35 +41,30 @@ class ObjectFactory extends BaseFactory { * @param $className Name of the class we shall construct * @param $args Arguments in an indexed array * @return $objectInstance An instance of the requested object - * @throws ClassNotFoundException If the requested class was not found + * @throws NoClassException If the requested class was not found * @throws EmptyVariableException If a variable is empty unexpectly */ - public final static function createObjectByName ($className, array $args=array()) { + public static final function createObjectByName ($className, array $args=array()) { + // First get an instance of this factory + $factoryInstance = new ObjectFactory(); + // Is the class name valid and is the class there? if (empty($className)) { - // First get an instance of this factory - $factoryInstance = new ObjectFactory(); - // Throw an exception here throw new EmptyVariableException(array($factoryInstance, 'className'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING); } elseif (!class_exists($className)) { - // First get an instance of this factory - $factoryInstance = new ObjectFactory(); - // Then throw an exception - throw new ClassNotFoundException(array($factoryInstance, $className), self::EXCEPTION_CLASS_NOT_FOUND); + throw new NoClassException(array($factoryInstance, $className), self::EXCEPTION_CLASS_NOT_FOUND); } // Create method name - $methodName = sprintf("create%s", - $className - ); + $methodName = sprintf('create%s', $className); // Run the user function $objectInstance = call_user_func_array(array($className, $methodName), $args); - // Count generated objects up - self::$total++; + // Count this one up + self::countObject($className); // Return the prepared instance return $objectInstance; @@ -86,9 +77,9 @@ class ObjectFactory extends BaseFactory { * @param $args Arguments in an indexed array * @return $objectInstance An instance of the requested object */ - public final static function createObjectByConfiguredName ($configEntry, array $args=array()) { + public static final function createObjectByConfiguredName ($configEntry, array $args=array()) { // Read the configuration entry - $className = FrameworkConfiguration::getInstance()->readConfig($configEntry); + $className = FrameworkConfiguration::getSelfInstance()->getConfigEntry($configEntry); // Send this to the other factory... $objectInstance = self::createObjectByName($className, $args); @@ -96,15 +87,6 @@ class ObjectFactory extends BaseFactory { // Return the instance return $objectInstance; } - - /** - * Static getter for total object count - * - * @return $total Total amount of generated objects - */ - public final static function getTotal () { - return self::$total; - } } // [EOF]