摘要:前言也許這是我們最關系的一個環節了。一個應用簡單來說無非就是請求和相應了。獲取你真的該補補協程的相關知識了。
前言
分析 RequestHandler也許這是我們最關系的一個環節了。一個web應用簡單來說無非就是請求和相應了。
獲取你真的該補補 協程 的相關知識了。不過。。
不懂協程懂進程~ 那就 當成進程來看 一個請求一個進 (xie) 程.
懂線程~ 那就 當成 線程來看 一個請求一個線 (xie) 程
vendor/zanphp/http-server/src/RequestHandler.php
class RequestHandler { // ... // 讓 協程來 處理每個 請求 $requestTask = new RequestTask($request, $swooleResponse, $this->context, $this->middleWareManager); $coroutine = $requestTask->run(); $this->task = new Task($coroutine, $this->context); $this->task->run(); clear_ob(); // .. }分析 RequestTask
vendor/zanphp/http-server/src/RequestTask.php
class RequestTask { public function run() { yield $this->doRun(); } public function doRun() { // 處理 中間件 邏輯 $response = (yield $this->middleWareManager->executeFilters()); if (null !== $response) { $this->context->set("response", $response); /** @var ResponseTrait $response */ yield $response->sendBy($this->swooleResponse); $this->context->getEvent()->fire($this->context->get("request_end_event_name")); return; } // 處理 中間件 放行后的 邏輯 $dispatcher = Di::make(Dispatcher::class); $response = (yield $dispatcher->dispatch($this->request, $this->context)); if (null === $response) { $code = BaseResponse::HTTP_INTERNAL_SERVER_ERROR; $response = new InternalErrorResponse("網絡錯誤($code)", $code); } yield $this->middleWareManager->executePostFilters($response); $this->context->set("response", $response); yield $response->sendBy($this->swooleResponse); $this->context->getEvent()->fire($this->context->get("request_end_event_name")); clear_ob(); } }分析 Dispatcher
vendor/zanphp/http-server/src/Dispatcher.php
get("controller_name"); $action = $context->get("action_name"); $args = $context->get("action_args"); if ($args == null) { $args = []; } if ($controllerName === "/" && is_callable($action)) { yield $action(...array_values($args)); } else { $controller = $this->getControllerClass($controllerName); if(!class_exists($controller)) { // 這些錯 常見吧 throw new PageNotFoundException("controller:{$controller} not found"); } $controller = new $controller($request, $context); if(!is_callable([$controller, $action])) { // 這些錯 常見吧 throw new PageNotFoundException("action:{$action} is not callable in controller:" . get_class($controller)); } yield $controller->$action(...array_values($args)); } } }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/26067.html
摘要:中的容器容器介紹容器中獲取一個類的實例容器中注冊于獲取類的單例函數理解面向接口開發會幫助你更好的理解容器類容器幫助函數獲取類的實例注冊類的單例占位有待補充 PHP協程與yield 我說不如你查閱相關文檔與資料 Iterator(迭代器)接口 生成器總覽在PHP中使用協程實現多任務調度 當然 如果你暫時 懶的話 yield 當成 return 關鍵字就行 zanphp中的命名空間 Za...
前言 本系列源碼解讀已 http-demo 項目為例 目錄說明 showImg(https://segmentfault.com/img/bVX8wy?w=452&h=431); 主要關心 圖片箭頭指向目錄http://zanphpdoc.zanphp.io/we... bin: 服務啟動bin文件目錄 init: 應用初始化相關 resource: 配置文件目錄,具體配置見 項目配置 src...
摘要:前言因為本系列主要解讀源碼,所以環境采用作者自己搭建的適用系列的環境。 前言 因為本系列主要解讀zanphp源碼, 所以環境采用作者自己搭建的適用 zan 系列的 docker 環境。 https://github.com/cjeruen/zan-docker 環境相關說明 本系列基礎目錄都在 ~/zan-code 目錄下進行 如有變更 自行 切換目錄 安裝 docker 與 co...
摘要:前言當然從我們熟悉但不完全熟悉的說起。下面是中的具體邏輯了。這里采用的是的方式。 前言 當然從我們熟悉(但不完全熟悉)的 MVC 說起。簡(zhi)單(jie)的描述. 1. MVC 概覽 1.1. URL 規則 上篇 目錄說明中 提到的,這里不多說 規則就是這樣,后面來說其源碼 1.2. Controller && Action src/Index/IndexController.p...
摘要:獲取應用并啟動分析設置應用名稱獲取本身實例想容器注冊單例設置應用基礎路徑其他初始化工作初始化容器其他初始化工作創建根據前面的知識掃盲可知道返回的真身是位于分析繼承這里就把中的函數都放在分析了服務的啟動主入口函 獲取應用并啟動 php bin/httpd
閱讀 2016·2021-09-13 10:23
閱讀 2348·2021-09-02 09:47
閱讀 3806·2021-08-16 11:01
閱讀 1227·2021-07-25 21:37
閱讀 1609·2019-08-30 15:56
閱讀 543·2019-08-30 13:52
閱讀 3138·2019-08-26 10:17
閱讀 2455·2019-08-23 18:17