当前位置:首页 > CMS教程 > 其它CMS > 列表

在swoole中制作一款仿制laravel的框架的实例代码

发布:smiling 来源: PHP粉丝网  添加日期:2022-04-18 10:23:41 浏览: 评论:0 

首先需要确定一下思路:我希望基于swoole的扩展开发的代码在run起来的时候,在接收到ws或是tcp等消息时,自动路由到某个类上,同时类可以实现加载类的依赖注入功能,目前市面上占据主流的一款框架Laravel,其中有一个依赖注入的功能非常的便捷,一般在通常的框架中拉取Class是这样做的:

  1. class a { 
  2.   public $bClassInstance
  3.   public function __construct(Class b) { 
  4.     $classInstance = new b(); 
  5.   } 
  6.   public function doSth() { 
  7.     return $this->bClassInstance->xxx(); 
  8.   } 
  9.  
  10. $b = new b(); 
  11. $a = new a($b
  12. $a->doSth(); 

而在Laravel中则可以省略一些实例化的步骤, 直接通过类型约束的语法在方法的形参上指定某类的命名空间就自动实例化该类进来了。

  1. class a { 
  2.   public function doSth(b $b) { 
  3.     return $b->xxx(); 
  4.   } 

想要实现这一点,必须要了解php的反射机制。反射是一个比较冷门的类,他可以做到:使用namespace实例化一个类、调用类的方法等,利用这一点,可以构造一个自动装箱的类。

  1. <?php 
  2. /*** 
  3.  * 依赖注入容器,若要执行依赖注入,请确保类包含构造函数! 
  4.  */ 
  5. namespace App\Server; 
  6.  
  7. class Container 
  8.   public $config
  9.   public $reflection
  10.   public function __construct($namespace
  11.   { 
  12.     try 
  13.     { 
  14.       $this->reflection = new \ReflectionClass($namespace); 
  15.     } 
  16.     catch (Exception $e
  17.     { 
  18.       echo $namespace
  19.     } 
  20.   } 
  21.   public function builderController($fn$server$frame$userMessage
  22.   { 
  23.     //从route中得到的control名称 
  24.     $this->reflection->getMethod($fn)->invoke($this->autoBuilder(), $server$frame$userMessage); 
  25.   } 
  26.  
  27.   public function builderTask($fn$server$userMessage
  28.   { 
  29.     $this->reflection->getMethod($fn)->invoke($this->autoBuilder(), $server$userMessage); 
  30.   } 
  31.  
  32.   public function autoBuilder() 
  33.   { 
  34.     #对构造函数赋值 
  35.     return $this->batchInstantiation($this->getPrototypeController($this->reflection)#获得字串 
  36.     ); 
  37.   } 
  38.  
  39.   protected final function getPrototypeController(\ReflectionClass $object
  40.   { 
  41.     $prototype = false; 
  42.     //批量从反射类中获取原型字串 
  43.     foreach ($object->getConstructor()->getParameters() as $parameter
  44.     { 
  45.       $prototype[] = $parameter->getClass()->name; 
  46.     } 
  47.  
  48.     return $prototype ?: []; 
  49.   } 
  50.  
  51.   protected final function batchInstantiation(array $prototypeArr
  52.   { 
  53.     foreach ($prototypeArr as $item
  54.     { 
  55.       $container = new container($item); 
  56.       $insArr[] = $container->autoBuilder();//进行递归注入 
  57.     } 
  58.  
  59.     return emptyempty($prototypeArr) ? $this->reflection->newInstance() : $this->reflection->newInstanceArgs($insArr); 
  60.   } 

有了这个简易的装箱类后,可以着手实现类的路由功能,我们首先创建composer.json,键入如下内容。

  1.   "require": { 
  2.    
  3.   }, 
  4.   "autoload": { 
  5.     "psr-4": { 
  6.     "App\\": "App/" 
  7.     } 
  8.   } 

下一步,我们需要创建一个处理路由的类,这个类在常规的框架中,一般用来映射http请求到对应的类的函数上,而在swoole里,请求会来自长连接。那么在route类中则需要做相应的处理。

  1. class Route 
  2.   public $websocketServer
  3.   public $model
  4.   public $cache
  5.   public function __construct() { 
  6.     $this->websocketServer = new \swoole_websocket_server("0.0.0.0""8002"); 
  7.   } 
  8.   public function start_ws() { 
  9.     // 这里设置一些swoole的参数 ... 
  10.     // 最后执行启动swoole 
  11.     $this->websocketServer->start(); 
  12.   } 
  13.     
  14.   public function ws_onMessage(\swoole_websocket_server $server$frame
  15.   { 
  16.     $userMessage = $this->filter_arr(json_decode($frame->data, true)); 
  17.     if (!$userMessage) { 
  18.       return false; 
  19.     } 
  20.       
  21.     if (!$userMessage['type'] || !$userMessage['action']) { 
  22.       return $this->call_shell("Type or action not found! "); 
  23.     } 
  24.     //使用依赖注入容器做伪路由 
  25.     $App = new Container('\App\Controller\\'.$userMessage['type']); 
  26.     return $App->builderController($userMessage['action'], $server$frame,$userMessage); 
  27.   } 
  28.     

最后一步,创建一个入口文件,引导路由类的执行。

  1. <?php 
  2. require "vendor/autoload.php"
  3.  
  4. use App\Server\Route; 
  5.  
  6. $App = new Route(); 
  7. $App->start_ws();

Tags: swoole laravel

分享到: