1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190:
<?php
namespace Net\Bazzline\UniqueNumberRepository\Application\Service;
use Net\Bazzline\Component\Locator\FactoryInterface;
class ApplicationLocator implements \Net\Bazzline\Component\Locator\LocatorInterface
{
private $factoryInstancePool = array();
private $sharedInstancePool = array();
public function getStorageFactory()
{
return $this->fetchFromSharedInstancePool('\Net\Bazzline\Component\Database\FileStorage\Storage\StorageFactory');
}
public function getRepositoryStorage()
{
$className = '\Net\Bazzline\UniqueNumberRepository\Infrastructure\Storage\RepositoryStorage';
if ($this->isNotInSharedInstancePool($className)) {
$factoryClassName = '\Net\Bazzline\UniqueNumberRepository\Infrastructure\Storage\RepositoryStorageFactory';
$factory = $this->fetchFromFactoryInstancePool($factoryClassName);
$this->addToSharedInstancePool($className, $factory->create());
}
return $this->fetchFromSharedInstancePool($className);
}
public function getUniqueNumberStorage()
{
$className = '\Net\Bazzline\UniqueNumberRepository\Infrastructure\Storage\UniqueNumberStorage';
if ($this->isNotInSharedInstancePool($className)) {
$factoryClassName = '\Net\Bazzline\UniqueNumberRepository\Infrastructure\Storage\UniqueNumberStorageFactory';
$factory = $this->fetchFromFactoryInstancePool($factoryClassName);
$this->addToSharedInstancePool($className, $factory->create());
}
return $this->fetchFromSharedInstancePool($className);
}
public function getUniqueNumberEnumerator()
{
$className = '\Net\Bazzline\UniqueNumberRepository\Application\Service\NumberEnumerator';
if ($this->isNotInSharedInstancePool($className)) {
$factoryClassName = '\Net\Bazzline\UniqueNumberRepository\Application\Service\UniqueNumberEnumeratorFactory';
$factory = $this->fetchFromFactoryInstancePool($factoryClassName);
$this->addToSharedInstancePool($className, $factory->create());
}
return $this->fetchFromSharedInstancePool($className);
}
final protected function fetchFromFactoryInstancePool($className)
{
if ($this->isNotInFactoryInstancePool($className)) {
if (!class_exists($className)) {
throw new InvalidArgumentException(
'factory class "' . $className . '" does not exist'
);
}
$factory = new $className();
$factory->setLocator($this);
$this->addToFactoryInstancePool($className, $factory);
}
return $this->getFromFactoryInstancePool($className);
}
private function addToFactoryInstancePool($className, FactoryInterface $factory)
{
$this->factoryInstancePool[$className] = $factory;
return $this;
}
private function getFromFactoryInstancePool($className)
{
return $this->factoryInstancePool[$className];
}
private function isNotInFactoryInstancePool($className)
{
return (!isset($this->factoryInstancePool[$className]));
}
final protected function fetchFromSharedInstancePool($className)
{
if ($this->isNotInSharedInstancePool($className)) {
if (!class_exists($className)) {
throw new InvalidArgumentException(
'class "' . $className . '" does not exist'
);
}
$instance = new $className();
$this->addToSharedInstancePool($className, $instance);
}
return $this->getFromSharedInstancePool($className);
}
private function addToSharedInstancePool($className, $instance)
{
$this->sharedInstancePool[$className] = $instance;
return $this;
}
private function getFromSharedInstancePool($className)
{
return $this->sharedInstancePool[$className];
}
private function isNotInSharedInstancePool($className)
{
return (!isset($this->sharedInstancePool[$className]));
}
}