首先需要确定一下思路:我但愿基于swoole的扩展开拓的代码在run起来的时候,在吸收到ws或是tcp等动静时,自动路由到某个类上,同时类可以实现加载类的依赖注入成果。今朝市面上占据主流的一款框架Laravel,个中有一个依赖注入的成果很是的便捷。一般在凡是的框架中拉取Class是这样做的:
class a { public $bClassInstance; public function __construct(Class b) { $classInstance = new b(); } public function doSth() { return $this->bClassInstance->xxx(); } } $b = new b(); $a = new a($b) $a->doSth();
而在Laravel中则可以省略一些实例化的步调, 直接通过范例约束的语法在要领的形参上指定某类的定名空间就自动实例化该类进来了。
class a { public function doSth(b $b) { return $b->xxx(); } }
想要实现这一点,必需要相识php的反射机制。反射是一个较量冷门的类,他可以做到:利用namespace实例化一个类、挪用类的要领等,操作这一点,可以结构一个自动装箱的类。
<?php /*** * 依赖注入容器,若要执行依赖注入,请确保类包括结构函数! */ namespace App\Server; class Container { public $config; public $reflection; public function __construct($namespace) { try { $this->reflection = new \ReflectionClass($namespace); } catch (Exception $e) { echo $namespace; } } public function builderController($fn, $server, $frame, $userMessage) { //从route中获得的control名称 $this->reflection->getMethod($fn)->invoke($this->autoBuilder(), $server, $frame, $userMessage); } public function builderTask($fn, $server, $userMessage) { $this->reflection->getMethod($fn)->invoke($this->autoBuilder(), $server, $userMessage); } public function autoBuilder() { #对结构函数赋值 return $this->batchInstantiation($this->getPrototypeController($this->reflection)#得到字串 ); } protected final function getPrototypeController(\ReflectionClass $object) { $prototype = false; //批量从反射类中获取原型字串 foreach ($object->getConstructor()->getParameters() as $parameter) { $prototype[] = $parameter->getClass()->name; } return $prototype ?: []; } protected final function batchInstantiation(array $prototypeArr) { foreach ($prototypeArr as $item) { $container = new container($item); $insArr[] = $container->autoBuilder();//举办递归注入 } return empty($prototypeArr) ? $this->reflection->newInstance() : $this->reflection->newInstanceArgs($insArr); } }
有了这个浅易的装箱类后,可以着手实现类的路由成果,我们首先建设composer.json,键入如下内容。
{ "require": { }, "autoload": { "psr-4": { "App\\": "App/" } } }
下一步,我们需要建设一个处理惩罚路由的类,这个类在通例的框架中,一般用来映射http请求到对应的类的函数上,而在swoole里,请求会来自长毗连。那么在route类中则需要做相应的处理惩罚。
class Route { public $websocketServer; public $model; public $cache; public function __construct() { $this->websocketServer = new \swoole_websocket_server("0.0.0.0", "8002"); } public function start_ws() { // 这里配置一些swoole的参数 ... // 最后执行启动swoole $this->websocketServer->start(); } public function ws_onMessage(\swoole_websocket_server $server, $frame) { $userMessage = $this->filter_arr(json_decode($frame->data, true)); if (!$userMessage) { return false; } if (!$userMessage['type'] || !$userMessage['action']) { return $this->call_shell("Type or action not found! "); } //利用依赖注入容器做伪路由 $App = new Container('\App\Controller\\'.$userMessage['type']); return $App->builderController($userMessage['action'], $server, $frame,$userMessage); } }
最后一步,建设一个进口文件,引导路由类的执行。
<?php require "vendor/autoload.php"; use App\Server\Route; $App = new Route(); $App->start_ws();
到此这篇关于在swoole中建造一款仿制laravel的框架的文章就先容到这了,更多相关swoole laravel框架内容请搜索剧本之家以前的文章或继承欣赏下面的相关文章但愿各人今后多多支持剧本之家!
您大概感乐趣的文章: