主頁 > 知識(shí)庫 > 在swoole中制作一款仿制laravel的框架的實(shí)例代碼

在swoole中制作一款仿制laravel的框架的實(shí)例代碼

熱門標(biāo)簽:福州人工外呼系統(tǒng)哪家強(qiáng) 新河科技智能外呼系統(tǒng)怎么樣 安裝電銷外呼系統(tǒng) 常州地圖標(biāo)注服務(wù)商 百度商鋪地圖標(biāo)注 衡水外呼系統(tǒng)平臺(tái) 注冊(cè)400電話申請(qǐng) 釘釘打卡地圖標(biāo)注 地圖標(biāo)注平臺(tái)怎么給錢注冊(cè)

首先需要確定一下思路:我希望基于swoole的擴(kuò)展開發(fā)的代碼在run起來的時(shí)候,在接收到ws或是tcp等消息時(shí),自動(dòng)路由到某個(gè)類上,同時(shí)類可以實(shí)現(xiàn)加載類的依賴注入功能。目前市面上占據(jù)主流的一款框架Laravel,其中有一個(gè)依賴注入的功能非常的便捷。一般在通常的框架中拉取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中則可以省略一些實(shí)例化的步驟, 直接通過類型約束的語法在方法的形參上指定某類的命名空間就自動(dòng)實(shí)例化該類進(jìn)來了。

class a {
  public function doSth(b $b) {
    return $b->xxx();
  }
}

想要實(shí)現(xiàn)這一點(diǎn),必須要了解php的反射機(jī)制。反射是一個(gè)比較冷門的類,他可以做到:使用namespace實(shí)例化一個(gè)類、調(diào)用類的方法等,利用這一點(diǎn),可以構(gòu)造一個(gè)自動(dòng)裝箱的類。

?php
/***
 * 依賴注入容器,若要執(zhí)行依賴注入,請(qǐng)確保類包含構(gòu)造函數(shù)!
 */
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()
  {
    #對(duì)構(gòu)造函數(shù)賦值
    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();//進(jìn)行遞歸注入
    }

    return empty($prototypeArr) ? $this->reflection->newInstance() : $this->reflection->newInstanceArgs($insArr);
  }
}

有了這個(gè)簡(jiǎn)易的裝箱類后,可以著手實(shí)現(xiàn)類的路由功能,我們首先創(chuàng)建composer.json,鍵入如下內(nèi)容。

{
  "require": {
 
  },
  "autoload": {
    "psr-4": {
    "App\\": "App/"
    }
  }
}

下一步,我們需要?jiǎng)?chuàng)建一個(gè)處理路由的類,這個(gè)類在常規(guī)的框架中,一般用來映射http請(qǐng)求到對(duì)應(yīng)的類的函數(shù)上,而在swoole里,請(qǐng)求會(huì)來自長(zhǎng)連接。那么在route類中則需要做相應(yīng)的處理。

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() {
    // 這里設(shè)置一些swoole的參數(shù) ...
    // 最后執(zhí)行啟動(dòng)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);
  }
  
}

最后一步,創(chuàng)建一個(gè)入口文件,引導(dǎo)路由類的執(zhí)行。

?php
require "vendor/autoload.php";

use App\Server\Route;

$App = new Route();
$App->start_ws();

到此這篇關(guān)于在swoole中制作一款仿制laravel的框架的文章就介紹到這了,更多相關(guān)swoole laravel框架內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • laravel下trait的使用代碼實(shí)例詳解
  • 清除laravel緩存命令代碼實(shí)例
  • laravel csrf驗(yàn)證總結(jié)
  • laravel與thinkphp之間的區(qū)別與優(yōu)缺點(diǎn)
  • laravel日志優(yōu)化實(shí)例講解

標(biāo)簽:遼陽 鶴崗 克拉瑪依 唐山 六安 鷹潭 柳州 白城

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《在swoole中制作一款仿制laravel的框架的實(shí)例代碼》,本文關(guān)鍵詞  在,swoole,中,制作,一款,仿制,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《在swoole中制作一款仿制laravel的框架的實(shí)例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于在swoole中制作一款仿制laravel的框架的實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章