This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/DependencyInjection/Container.php

295 lines
8.3 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
namespace Symfony\Component\DependencyInjection;
2010-01-04 14:26:20 +00:00
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
2010-06-27 17:28:29 +01:00
2010-01-04 14:26:20 +00:00
/*
* This file is part of the Symfony framework.
2010-01-04 14:26:20 +00:00
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* Container is a dependency injection container.
*
2010-06-27 17:28:29 +01:00
* It gives access to object instances (services).
2010-01-04 14:26:20 +00:00
*
* Services and parameters are simple key/pair stores.
*
* Parameters keys are case insensitive.
*
* A service id can contain lowercased letters, digits, underscores, and dots.
* Underscores are used to separate words, and dots to group services
* under namespaces:
*
* <ul>
* <li>request</li>
* <li>mysql_session_storage</li>
* <li>symfony.mysql_session_storage</li>
* </ul>
*
* A service can also be defined by creating a method named
* getXXXService(), where XXX is the camelized version of the id:
*
* <ul>
* <li>request -> getRequestService()</li>
* <li>mysql_session_storage -> getMysqlSessionStorageService()</li>
* <li>symfony.mysql_session_storage -> getSymfony_MysqlSessionStorageService()</li>
* </ul>
*
* The container can have three possible behaviors when a service does not exist:
*
* * EXCEPTION_ON_INVALID_REFERENCE: Throws an exception (the default)
* * NULL_ON_INVALID_REFERENCE: Returns null
* * IGNORE_ON_INVALID_REFERENCE: Ignores the wrapping command asking for the reference
* (for instance, ignore a setter if the service does not exist)
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Container implements ContainerInterface, \ArrayAccess
2010-01-04 14:26:20 +00:00
{
2010-06-27 17:28:29 +01:00
protected $parameterBag;
protected $services;
/**
* Constructor.
*
* @param ParameterBagInterface $parameterBag A ParameterBagInterface instance
*/
2010-06-27 17:28:29 +01:00
public function __construct(ParameterBagInterface $parameterBag = null)
2010-01-04 14:26:20 +00:00
{
2010-06-27 17:28:29 +01:00
$this->parameterBag = null === $parameterBag ? new ParameterBag() : $parameterBag;
$this->services = array();
$this->set('service_container', $this);
2010-01-04 14:26:20 +00:00
}
/**
* Freezes the container.
*
* This method does two things:
*
* * Parameter values are resolved;
* * The parameter bag is freezed.
*/
2010-06-27 17:28:29 +01:00
public function freeze()
{
$this->parameterBag->resolve();
2010-06-27 17:28:29 +01:00
$this->parameterBag = new FrozenParameterBag($this->parameterBag->all());
}
/**
2010-06-27 17:28:29 +01:00
* Returns true if the container parameter bag are frozen.
*
2010-06-27 17:28:29 +01:00
* @return Boolean true if the container parameter bag are frozen, false otherwise
*/
2010-06-27 17:28:29 +01:00
public function isFrozen()
{
2010-06-27 17:28:29 +01:00
return $this->parameterBag instanceof FrozenParameterBag;
}
/**
2010-06-27 17:28:29 +01:00
* Gets the service container parameter bag.
*
* @return ParameterBagInterface A ParameterBagInterface instance
*/
2010-06-27 17:28:29 +01:00
public function getParameterBag()
{
2010-06-27 17:28:29 +01:00
return $this->parameterBag;
}
/**
2010-06-27 17:28:29 +01:00
* Gets a parameter.
*
2010-06-27 17:28:29 +01:00
* @param string $name The parameter name
*
* @return mixed The parameter value
*
* @throws \InvalidArgumentException if the parameter is not defined
*/
public function getParameter($name)
{
2010-06-27 17:28:29 +01:00
return $this->parameterBag->get($name);
}
/**
* Checks if a parameter exists.
*
* @param string $name The parameter name
*
* @return boolean The presense of parameter in container
*/
public function hasParameter($name)
{
return $this->parameterBag->has($name);
}
/**
2010-06-27 17:28:29 +01:00
* Sets a parameter.
*
* @param string $name The parameter name
* @param mixed $parameters The parameter value
*/
public function setParameter($name, $value)
{
2010-06-27 17:28:29 +01:00
$this->parameterBag->set($name, $value);
}
/**
* Sets a service.
*
* @param string $id The service identifier
* @param object $service The service instance
*/
2010-06-27 17:28:29 +01:00
public function set($id, $service)
2010-01-04 14:26:20 +00:00
{
$this->services[$id] = $service;
2010-01-04 14:26:20 +00:00
}
/**
* Returns true if the given service is defined.
*
* @param string $id The service identifier
*
* @return Boolean true if the service is defined, false otherwise
*/
2010-06-27 17:28:29 +01:00
public function has($id)
{
return isset($this->services[$id]) || method_exists($this, 'get'.strtr($id, array('_' => '', '.' => '_')).'Service');
}
/**
* Gets a service.
*
2010-06-27 17:28:29 +01:00
* If a service is both defined through a set() method and
* with a set*Service() method, the former has always precedence.
*
* @param string $id The service identifier
* @param int $invalidBehavior The behavior when the service does not exist
*
* @return object The associated service
*
* @throws \InvalidArgumentException if the service is not defined
*
* @see Reference
*/
2010-06-27 17:28:29 +01:00
public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE)
2010-01-04 14:26:20 +00:00
{
if (!is_string($id)) {
throw new \InvalidArgumentException(sprintf('A service id should be a string (%s given).', str_replace("\n", '', var_export($id, true))));
}
if (isset($this->services[$id])) {
return $this->services[$id];
}
2010-06-27 17:28:29 +01:00
if (method_exists($this, $method = 'get'.strtr($id, array('_' => '', '.' => '_')).'Service')) {
return $this->$method();
}
if (self::EXCEPTION_ON_INVALID_REFERENCE === $invalidBehavior) {
throw new \InvalidArgumentException(sprintf('The service "%s" does not exist.', $id));
} else {
return null;
}
2010-01-04 14:26:20 +00:00
}
/**
* Gets all service ids.
*
* @return array An array of all defined service ids
*/
public function getServiceIds()
2010-01-04 14:26:20 +00:00
{
$ids = array();
$r = new \ReflectionClass($this);
foreach ($r->getMethods() as $method) {
if (preg_match('/^get(.+)Service$/', $name = $method->getName(), $match)) {
$ids[] = self::underscore($match[1]);
}
}
return array_merge($ids, array_keys($this->services));
2010-01-04 14:26:20 +00:00
}
/**
2010-06-27 17:28:29 +01:00
* Returns true if the service id is defined (implements the ArrayAccess interface).
*
2010-06-27 17:28:29 +01:00
* @param string $id The service id
*
2010-06-27 17:28:29 +01:00
* @return Boolean true if the service id is defined, false otherwise
*/
2010-06-27 17:28:29 +01:00
public function offsetExists($id)
2010-01-04 14:26:20 +00:00
{
2010-06-27 17:28:29 +01:00
return $this->has($id);
2010-01-04 14:26:20 +00:00
}
/**
2010-06-27 17:28:29 +01:00
* Gets a service by id (implements the ArrayAccess interface).
*
2010-06-27 17:28:29 +01:00
* @param string $id The service id
*
* @return mixed The parameter value
*/
2010-06-27 17:28:29 +01:00
public function offsetGet($id)
{
2010-06-27 17:28:29 +01:00
return $this->get($id);
}
/**
2010-06-27 17:28:29 +01:00
* Sets a service (implements the ArrayAccess interface).
*
2010-06-27 17:28:29 +01:00
* @param string $id The service id
* @param object $value The service
*/
2010-06-27 17:28:29 +01:00
public function offsetSet($id, $value)
{
2010-06-27 17:28:29 +01:00
$this->set($id, $value);
}
/**
2010-06-27 17:28:29 +01:00
* Removes a service (implements the ArrayAccess interface).
*
2010-06-27 17:28:29 +01:00
* @param string $id The service id
*/
2010-06-27 17:28:29 +01:00
public function offsetUnset($id)
{
2010-06-27 17:28:29 +01:00
throw new \LogicException(sprintf('You can\'t unset a service (%s).', $id));
}
/**
* Catches unknown methods.
*
* @param string $method The called method name
* @param array $arguments The method arguments
*
* @return mixed
*
* @throws \BadMethodCallException When calling to an undefined method
*/
public function __call($method, $arguments)
{
if (!preg_match('/^get(.+)Service$/', $method, $match)) {
throw new \BadMethodCallException(sprintf('Call to undefined method %s::%s.', get_class($this), $method));
}
2010-06-27 17:28:29 +01:00
return $this->get(self::underscore($match[1]));
}
static public function camelize($id)
{
return preg_replace(array('/(^|_)+(.)/e', '/\.(.)/e'), array("strtoupper('\\2')", "'_'.strtoupper('\\1')"), $id);
}
static public function underscore($id)
{
return strtolower(preg_replace(array('/([A-Z]+)([A-Z][a-z])/', '/([a-z\d])([A-Z])/'), array('\\1_\\2', '\\1_\\2'), strtr($id, '_', '.')));
}
2010-01-04 14:26:20 +00:00
}