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:
<?php
namespace SAREhub\Commons\Misc;
/**
* Factory with registry of available creators
*/
class GenericFactory
{
/** @var array */
private $creators = [];
/**
* @param string $creatorName
* @param mixed $data
* @return mixed
* @throws \Exception
*/
public function create($creatorName, $data = null)
{
if ($creator = $this->getCreator($creatorName)) {
return $creator($data);
}
throw new \Exception("creator with name '" . $creatorName . "' not registered");
}
/**
* @param string $name
* @return bool
*/
public function hasCreator($name)
{
return isset($this->creators[$name]);
}
/**
* @param string $name
* @return callable|null
*/
public function getCreator($name)
{
return $this->hasCreator($name) ? $this->creators[$name] : null;
}
/**
* @param string $name
* @param callable $creator
* @return self
*/
public function registerCreator($name, callable $creator)
{
$this->creators[$name] = $creator;
return $this;
}
/**
* @param array $creators
* @return self
*/
public function registerCreators(array $creators)
{
foreach ($creators as $name => $creator) {
$this->registerCreator($name, $creator);
}
return $this;
}
}