本文共 5197 字,大约阅读时间需要 17 分钟。
简介:Dependency Injection 依赖注入
EasySwoole实现了简单版的IOC,使用 IOC 容器可以很方便的存储/获取资源,实现解耦。
使用依赖注入,最重要的一点好处就是有效的分离了对象和它所需要的外部资源,使得它们松散耦合,有利于功能复用,更重要的是使得程序的整个体系结构变得非常灵活。
在我们的日常开发中,创建对象的操作随处可见以至于对其十分熟悉的同时又感觉十分繁琐,每次需要对象都需要亲手将其new出来,甚至某些情况下由于坏编程习惯还会造成对象无法被回收,这是相当糟糕的。但更为严重的是,我们一直倡导的松耦合,少***原则,这种情况下变得一无是处。于是前辈们开始谋求改变这种编程陋习,考虑如何使用编码更加解耦合,由此而来的解决方案是面向接口的编程。
--摘自《easyswoole开发文档》
- 1、singleton模式的巧妙实现。
- 2、通过Di方式实现简单的容器,方便存取资源,从而达到解耦的目的。
client.php
(string)$redisConfig['host'] ?? '', 'port' => (int)$redisConfig['port'] ?? '', 'timeout' => (string)$redisConfig['timeout'] ?? '', 'password' => (string)$redisConfig['password'] ?? '', 'database' => (int)$redisConfig['database'] ?? '', ]; //直接访问 //Redis::getInstance($config)->set('hello', 'world'); //echo Redis::getInstance($config)->get('hello'); //Di::getInstance()->clear(); //注入容器 //--方法一、注入实例 //Di::getInstance()->set('redis', \App\Lib\Redis::getInstance($config)); //--方法二、容器内部实例化(支持单例模式) Di::getInstance()->set('redis', \App\Lib\Redis::class, $config); //通过容器获取实例 $redisInstance = Di::getInstance()->get('redis'); $redisInstance->set('dear', 'hui'); echo $redisInstance->get('hello') . PHP_EOL; echo $redisInstance->get('dear') . PHP_EOL;} catch (\Exception $e) { //throw $e; echo $e->getMessage();}
\AbstractInterface\Singleton.php 单例抽象接口
namespace App\AbstractInterface;#声明为特性Trait Singleton{ private static $instance; public static function getInstance(...$args) { if(!isset(self::$instance)){ //通过static静态绑定来new绑定的对象 self::$instance=new static(...$args); } return self::$instance; }}
\Lib\Redis.php redis服务类
namespace App\Lib;require_once APP_ROOT . '/AbstractInterface/Singleton.php';use App\AbstractInterface\Singleton;class Redis{ //这里通过使用特性来扩展Redis类的能力 //借助Singleton中的getInstance来new本类,创建redis连接实例 //Redis::getInstance(...) use Singleton; private $connectInstance = null; /** * Redis constructor. * @param array $redisConfig * @throws \Exception */ private function __construct(array $redisConfig) { try { //通过yaconf读取配置ini if (!extension_loaded('redis')) throw new \Exception('Redis extension is not install'); $this->connectInstance = new \Redis(); $result = $this->connectInstance->connect($redisConfig['host'], $redisConfig['port'], $redisConfig['timeout']); $this->connectInstance->auth($redisConfig['password']); $this->connectInstance->select($redisConfig['database']); if ($result === false) throw new \Exception('Connect redis server fail'); } catch (\Exception $e) { throw $e; } } public function __call($name, $arguments) { return $this->connectInstance->$name(...$arguments); }}
Redis类引入Singleton特性,轻松实现单例子。
//通过Redis::getInstance就能获取实例
Redis::getInstance($config)->set('hello', 'world');echo Redis::getInstance($config)->get('hello');
\Service\Di.php 依赖注入实现简单Ioc容器
container[$key] = [ 'obj' => $obj, 'params' => $arg ]; } public function get(string $key) { if (!isset($this->container[$key])) return null; $result = $this->container[$key]; if (is_object($result['obj'])) { return $result['obj']; } elseif (is_callable($result['obj'])) {// 检测参数是否为合法的可调用结构(function,class method) return $result['obj']; } elseif (is_string($result['obj']) && class_exists($result['obj'])) { //通过反射方式获取实例化对象 $reflection = new \ReflectionClass($result['obj']); $constructor = $reflection->getConstructor(); $instance = null; if ($constructor->isPublic()) {//直接实例化 $instance = $reflection->newInstanceArgs($result['params']); } elseif ($constructor->isPrivate()) {//支持单例模式 if ($reflection->hasMethod('getInstance')) { $instance = $result['obj']::getInstance($result['params']); } } $this->container[$key]['obj'] = $instance; return $instance; } else { return $result['obj']; } } public function clear(): void { $this->container = []; } public function delete($key): void { unset($this->container[$key]); }}
在client.php中使用Di的使用
//向容器中注入实例
//Di::getInstance()->set('redis', \App\Lib\Redis::getInstance($config));Di::getInstance()->set('redis', \App\Lib\Redis::class, $config);//通过容器获取实例
$redisInstance = Di::getInstance()->get('redis');$redisInstance->set('dear', 'hui');
echo $redisInstance->get('hello') . PHP_EOL;echo $redisInstance->get('dear') . PHP_EOL;
本案例涉及知识点:
1.通过Yaconf扩展高效获取配置信息2.static静态绑定、trait特性3.singleton模式的实现4.Di依赖注入附:Yaconf配置文件(easyswoole_api.ini)格式
redis.host = '192.168.1.99'
redis.port = 6379redis.password = 'helloworld'redis.database = 12redis.timeout = 3
转载于:https://blog.51cto.com/phpme/2342625