2015-09-17 23:11:18 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Aviat\Ion\Di;
|
|
|
|
|
|
|
|
use ArrayObject;
|
2015-11-13 16:31:01 -05:00
|
|
|
use Psr\Log\LoggerInterface;
|
2015-09-17 23:11:18 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dependency container
|
|
|
|
*/
|
|
|
|
class Container implements ContainerInterface {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Array with class instances
|
|
|
|
*
|
2015-10-12 14:27:20 -04:00
|
|
|
* @var ArrayObject
|
2015-09-17 23:11:18 -04:00
|
|
|
*/
|
|
|
|
protected $container = [];
|
|
|
|
|
2015-11-13 16:31:01 -05:00
|
|
|
/**
|
|
|
|
* Map of logger instances
|
|
|
|
*
|
|
|
|
* @var ArrayObject
|
|
|
|
*/
|
|
|
|
protected $loggers = [];
|
|
|
|
|
2015-09-17 23:11:18 -04:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param array $values (optional)
|
|
|
|
*/
|
|
|
|
public function __construct(array $values = [])
|
|
|
|
{
|
2015-10-06 10:24:48 -04:00
|
|
|
$this->container = new ArrayObject($values);
|
2015-11-13 16:31:01 -05:00
|
|
|
$this->loggers = new ArrayObject([]);
|
2015-09-17 23:11:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds an entry of the container by its identifier and returns it.
|
|
|
|
*
|
|
|
|
* @param string $id Identifier of the entry to look for.
|
|
|
|
*
|
|
|
|
* @throws NotFoundException No entry was found for this identifier.
|
|
|
|
* @throws ContainerException Error while retrieving the entry.
|
|
|
|
*
|
|
|
|
* @return mixed Entry.
|
|
|
|
*/
|
|
|
|
public function get($id)
|
|
|
|
{
|
|
|
|
if ( ! is_string($id))
|
|
|
|
{
|
|
|
|
throw new Exception\ContainerException("Id must be a string");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->has($id))
|
|
|
|
{
|
|
|
|
return $this->container[$id];
|
|
|
|
}
|
|
|
|
|
2015-09-18 22:55:40 -04:00
|
|
|
throw new Exception\NotFoundException("Item '{$id}' does not exist in container.");
|
2015-09-17 23:11:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a value to the container
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param mixed $value
|
2015-11-13 16:31:01 -05:00
|
|
|
* @return ContainerInterface
|
2015-09-17 23:11:18 -04:00
|
|
|
*/
|
|
|
|
public function set($id, $value)
|
|
|
|
{
|
|
|
|
$this->container[$id] = $value;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the container can return an entry for the given identifier.
|
|
|
|
* Returns false otherwise.
|
|
|
|
*
|
|
|
|
* @param string $id Identifier of the entry to look for.
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function has($id)
|
|
|
|
{
|
|
|
|
return $this->container->offsetExists($id);
|
|
|
|
}
|
2015-11-13 16:31:01 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether a logger channel is registered
|
|
|
|
* @param string $key The logger channel
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasLogger($key = 'default')
|
|
|
|
{
|
|
|
|
return $this->loggers->offsetExists($key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a logger to the Container
|
|
|
|
*
|
|
|
|
* @param LoggerInterface $logger
|
|
|
|
* @param string $key The logger 'channel'
|
|
|
|
* @return ContainerInterface
|
|
|
|
*/
|
|
|
|
public function setLogger(LoggerInterface $logger, $key = 'default')
|
|
|
|
{
|
|
|
|
$this->loggers[$key] = $logger;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve a logger for the selected channel
|
|
|
|
*
|
|
|
|
* @param string $key The logger to retreive
|
|
|
|
* @return LoggerInterface|null
|
|
|
|
*/
|
|
|
|
public function getLogger($key = 'default')
|
|
|
|
{
|
|
|
|
return ($this->hasLogger($key))
|
|
|
|
? $this->loggers[$key]
|
|
|
|
: NULL;
|
|
|
|
}
|
2015-09-17 23:11:18 -04:00
|
|
|
}
|
|
|
|
// End of Container.php
|