华子的笔记 Help

PHP中的依赖注入容器

什么是依赖注入?

在面向对象编程中,对象之间经常会有相互依赖的情况。例如,一个类可能需要使用另一个类的某个方法或属性。在这种情况下,我们可以通过将被依赖的类的实例传递给依赖类的构造函数或方法来解决依赖关系。这种方式被称为依赖注入。

依赖注入有助于解耦代码,使其更加模块化和可维护。它还使得代码更易于测试,因为我们可以轻松地替换依赖项的实现来模拟测试环境。

如何在PHP中实现依赖注入?

在PHP中,我们可以使用构造函数注入或方法注入来实现依赖注入。以下是一个使用构造函数注入的示例:

class ClassA { private $classB; public function __construct(ClassB $classB) { $this->classB = $classB; } public function doSomething() { // 使用 $this->classB 中的方法和属性 } } class ClassB { // ClassB 的方法和属性 } $classB = new ClassB(); $classA = new ClassA($classB);

在上面的示例中,ClassA 的构造函数需要一个 ClassB 的实例作为参数。这使得 ClassA 可以使用 ClassB 中的方法和属性。

实现一个基于PHP反射机制的依赖注入容器

下面是一个基于反射机制的简单实现:

# file:Container.php <?php namespace Leolu9527\Container; use Psr\Container\ContainerExceptionInterface; use Psr\Container\ContainerInterface; use Psr\Container\NotFoundExceptionInterface; class Container implements ContainerInterface { /** * @var array<string, callable|object|string> */ private array $definitions; /** * @var array */ private array $services = []; /** * Create a container object with a set of definitions. * @param array<string, callable|object|string> $definitions */ public function __construct(array $definitions = []) { $this->definitions = $definitions; } public function set(string $id, $definition) { if (!array_key_exists($id, $this->definitions)) { $this->definitions[$id] = $definition; } } /** * @inheritDoc */ public function get(string $id) { if (array_key_exists($id, $this->services)) { return $this->services[$id]; } if (!$this->has($id)) { throw new NotInContainerException(sprintf( 'There is not service with id "%s" in the container.', $id, )); } $definition = $this->definitions[$id]; $service = $this->services[$id] = $this->getService($id, $definition); return $service; } /** * @inheritDoc */ public function has(string $id): bool { return array_key_exists($id, $this->definitions); } private function getService($id, $definition) { if (is_callable($definition)) { try { return $definition(); } catch (\Throwable $e) { throw new ContainerException( sprintf('Error while invoking callable for "%s"', $id), 0, $e, ); } } elseif (is_object($definition)) { return $definition; } elseif (is_string($definition)) { if (class_exists($definition)) { try { return $this->buildInstance($definition); } catch (\Throwable $e) { throw new ContainerException(sprintf('Could not instantiate class "%s"', $id), 0, $e); } } throw new ContainerException(sprintf( 'Could not instantiate class "%s". Class was not found.', $id, )); } else { throw new ContainerException(sprintf( 'Invalid type for definition with id "%s"', $id, )); } } /** * @throws NotFoundExceptionInterface * @throws \ReflectionException * @throws ContainerExceptionInterface */ private function buildInstance(string $className) { $reflectionClass = new \ReflectionClass($className); if (!$reflectionClass->isInstantiable()) { throw new \ReflectionException("{$className} is not instantiable"); } $constructor = $reflectionClass->getConstructor(); if ($constructor === null) { return $reflectionClass->newInstance(); } $dependencies = $this->getDependencies($constructor->getParameters()); return $reflectionClass->newInstanceArgs($dependencies); } /** * @param \ReflectionParameter[] $parameters * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface * @throws \ReflectionException */ private function getDependencies($parameters): array { $dependencies = []; foreach ($parameters as $parameter) { $dependency = $parameter->getType(); if (($dependency !== null && $dependency->isBuiltin()) || $dependency === null) { if ($parameter->isDefaultValueAvailable()) { $dependencies[] = $parameter->getDefaultValue(); } else { throw new \ReflectionException("Unable to resolve dependency for parameter {$parameter->getName()}"); } } else { $dependencies[] = $this->get($dependency->getName()); } } return $dependencies; } }

上述代码实现了 PSR-11ContainerInterface 接口。它有以下几个主要的方法:

  1. __construct() :容器实例化时可以传入一组定义,以关联数组的形式保存在 $definitions 中。

  2. set() :向容器中添加新的定义。

  3. get() :获取 $id 对应的服务,如果服务不存在则抛出异常。如果服务已经被实例化,直接返回该实例,否则根据定义生成一个新的实例并返回。

  4. has() :检查容器中是否包含某个服务。

  5. getService() :根据不同类型的定义生成相应的服务实例。

  6. buildInstance() :根据给定的类名通过反射生成该类的实例。

  7. getDependencies() :根据构造函数的参数获取该函数的依赖项。

该容器类可以根据传入的定义(即 __construct() 中的数组)或者 set() 方法添加的定义,通过 get() 方法实现对服务的管理和使用。它支持不同类型的定义,包括回调函数、类名和对象等。如果定义是一个回调函数,容器会执行该回调函数并返回其结果,如果是类名,则生成该类的实例,并通过依赖注入来自动解析其依赖项。

附录

代码: https://github.com/leolu9527/php/blob/main/src/Container/Container.php

References

  1. https://www.php-fig.org/psr/psr-11/

  2. https://laravel.com/

  3. https://php-di.org/

19 November 2023