Design patterns
Multiton
Zoeken…
Opmerkingen
Multitonitis
Hetzelfde als Singleton , Multiton kan als een slechte gewoonte worden beschouwd. Er zijn echter momenten waarop u het verstandig kunt gebruiken (bijvoorbeeld als u een systeem zoals ORM / ODM bouwt om meerdere objecten te behouden).
Pool van singletons (PHP-voorbeeld)
Multiton kan worden gebruikt als een container voor singletons. Dit is Multiton-implementatie is een combinatie van Singleton- en poolpatronen.
Dit is een voorbeeld van hoe een veelvoorkomende Multiton-poolklasse kan worden gemaakt:
abstract class MultitonPoolAbstract
{
/**
* @var array
*/
protected static $instances = [];
final protected function __construct() {}
/**
* Get class name of lately binded class
*
* @return string
*/
final protected static function getClassName()
{
return get_called_class();
}
/**
* Instantiates a calling class object
*
* @return static
*/
public static function getInstance()
{
$className = static::getClassName();
if( !isset(self::$instances[$className]) ) {
self::$instances[$className] = new $className;
}
return self::$instances[$className];
}
/**
* Deletes a calling class object
*
* @return void
*/
public static function deleteInstance()
{
$className = static::getClassName();
if( isset(self::$instances[$className]) )
unset(self::$instances[$className]);
}
/*-------------------------------------------------------------------------
| Seal methods that can instantiate the class
|------------------------------------------------------------------------*/
final protected function __clone() {}
final protected function __sleep() {}
final protected function __wakeup() {}
}
Op deze manier kunnen we verschillende Singleton-pools instantiëren.
Register van singletons (PHP-voorbeeld)
Dit patroon kan worden gebruikt om een geregistreerde pools van singletons te bevatten, elk onderscheiden door een unieke ID:
abstract class MultitonRegistryAbstract
{
/**
* @var array
*/
protected static $instances = [];
/**
* @param string $id
*/
final protected function __construct($id) {}
/**
* Get class name of lately binded class
*
* @return string
*/
final protected static function getClassName()
{
return get_called_class();
}
/**
* Instantiates a calling class object
*
* @return static
*/
public static function getInstance($id)
{
$className = static::getClassName();
if( !isset(self::$instances[$className]) ) {
self::$instances[$className] = [$id => new $className($id)];
} else {
if( !isset(self::$instances[$className][$id]) ) {
self::$instances[$className][$id] = new $className($id);
}
}
return self::$instances[$className][$id];
}
/**
* Deletes a calling class object
*
* @return void
*/
public static function unsetInstance($id)
{
$className = static::getClassName();
if( isset(self::$instances[$className]) ) {
if( isset(self::$instances[$className][$id]) ) {
unset(self::$instances[$className][$id]);
}
if( empty(self::$instances[$className]) ) {
unset(self::$instances[$className]);
}
}
}
/*-------------------------------------------------------------------------
| Seal methods that can instantiate the class
|------------------------------------------------------------------------*/
final protected function __clone() {}
final protected function __sleep() {}
final protected function __wakeup() {}
}
Dit is een vereenvoudigde vorm van patroon die kan worden gebruikt voor ORM om verschillende entiteiten van een bepaald type op te slaan.