自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Laravel學(xué)習(xí)筆記之Middleware源碼解析

開發(fā) 前端
本文主要學(xué)習(xí)Laravel的Middleware的源碼設(shè)計(jì)思想,并將學(xué)習(xí)心得分享出來,希望對(duì)別人有所幫助。Laravel學(xué)習(xí)筆記之Decorator Pattern已經(jīng)聊過Laravel使用了Decorator Pattern來設(shè)計(jì)Middleware,看Laravel源碼發(fā)現(xiàn)其巧妙用了Closure和PHP的一些數(shù)組函數(shù)來設(shè)計(jì)Middleware。

說明:本文主要學(xué)習(xí)Laravel的Middleware的源碼設(shè)計(jì)思想,并將學(xué)習(xí)心得分享出來,希望對(duì)別人有所幫助。Laravel學(xué)習(xí)筆記之Decorator Pattern已經(jīng)聊過Laravel使用了Decorator Pattern來設(shè)計(jì)Middleware,看Laravel源碼發(fā)現(xiàn)其巧妙用了Closure和PHP的一些數(shù)組函數(shù)來設(shè)計(jì)Middleware。

開發(fā)環(huán)境:Laravel5.3 + PHP7 + OS X 10.11

PHP內(nèi)置函數(shù)array_reverse、array_reduce、call_user_func和call_user_func_array

看Laravel源碼之前,先看下這幾個(gè)PHP內(nèi)置函數(shù)的使用。首先array_reverse()函數(shù)比較簡單,倒置數(shù)組,看測(cè)試代碼:

  1. $pipes = [ 
  2.     'Pipe1'
  3.     'Pipe2'
  4.     'Pipe3'
  5.     'Pipe4'
  6.     'Pipe5'
  7.     'Pipe6'
  8. ]; 
  9.  
  10. $pipes = array_reverse($pipes); 
  11.  
  12. var_dump($pipes); 
  13.  
  14. // output 
  15. array(6) { 
  16.   [0] => 
  17.   string(5) "Pipe6" 
  18.   [1] => 
  19.   string(5) "Pipe5" 
  20.   [2] => 
  21.   string(5) "Pipe4" 
  22.   [3] => 
  23.   string(5) "Pipe3" 
  24.   [4] => 
  25.   string(5) "Pipe2" 
  26.   [5] => 
  27.   string(5) "Pipe1" 
  28.  

array_reduce內(nèi)置函數(shù)主要是用回調(diào)函數(shù)去迭代數(shù)組中每一個(gè)值,并且每一次回調(diào)得到的結(jié)果值作為下一次回調(diào)的初始值,***返回最終迭代的值: 

  1. /** 
  2.  * @link http://php.net/manual/zh/function.array-reduce.php 
  3.  * @param int $v 
  4.  * @param int $w 
  5.  * 
  6.  * @return int 
  7.  */ 
  8. function rsum($v, $w) 
  9.     $v += $w; 
  10.     return $v; 
  11.  
  12. $a = [1, 2, 3, 4, 5]; 
  13. // 10為初始值 
  14. $b = array_reduce($a, "rsum", 10); 
  15. // ***輸出 (((((10 + 1) + 2) + 3) + 4) + 5) = 25 
  16. echo $b . PHP_EOL;   

call_user_func()是執(zhí)行回調(diào)函數(shù),并可輸入?yún)?shù)作為回調(diào)函數(shù)的參數(shù),看測(cè)試代碼: 

  1. class TestCallUserFunc 
  2.     public function index($request) 
  3.     { 
  4.         echo $request . PHP_EOL; 
  5.     } 
  6. }    
  7.  
  8. /** 
  9.  * @param $test 
  10.  */ 
  11. function testCallUserFunc($test) 
  12.     echo $test . PHP_EOL; 
  13.  
  14. // [$class, $method] 
  15. call_user_func(['TestCallUserFunc''index'], 'pipes'); // 輸出'pipes' 
  16.  
  17. // Closure 
  18. call_user_func(function ($passable) { 
  19.     echo $passable . PHP_EOL; 
  20. }, 'pipes'); // 輸出'pipes' 
  21.  
  22. // function 
  23. call_user_func('testCallUserFunc' , 'pipes'); // 輸出'pipes'  

call_user_func_array與call_user_func基本一樣,只不過傳入的參數(shù)是數(shù)組: 

  1. class TestCallUserFuncArray 
  2.     public function index($request) 
  3.     { 
  4.         echo $request . PHP_EOL; 
  5.     } 
  6.  
  7. /** 
  8.  * @param $test 
  9.  */ 
  10. function testCallUserFuncArray($test) 
  11.     echo $test . PHP_EOL; 
  12.  
  13. // [$class, $method] 
  14. call_user_func_array(['TestCallUserFuncArray''index'], ['pipes']); // 輸出'pipes' 
  15.  
  16. // Closure 
  17. call_user_func_array(function ($passable) { 
  18.     echo $passable . PHP_EOL; 
  19. }, ['pipes']); // 輸出'pipes' 
  20.  
  21. // function 
  22. call_user_func_array('testCallUserFuncArray' , ['pipes']); // 輸出'pipes'  

Middleware源碼解析

了解了幾個(gè)PHP內(nèi)置函數(shù)后再去看下Middleware源碼就比較簡單了。Laravel學(xué)習(xí)筆記之IoC Container實(shí)例化源碼解析已經(jīng)聊過Application的實(shí)例化,得到index.php中的$app變量,即\Illuminate\Foundation\Application的實(shí)例化對(duì)象。然后繼續(xù)看下index.php的源碼: 

  1. /** 
  2.  * @var \App\Http\Kernel $kernel 
  3.  */ 
  4. $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); 
  5.  
  6. $response = $kernel->handle( 
  7.     $request = Illuminate\Http\Request::capture() 
  8. ); 
  9.  
  10. $response->send(); 
  11.  
  12. $kernel->terminate($request, $response);  

首先從容器中解析出Kernel對(duì)象,對(duì)于\App\Http\Kernel對(duì)象的依賴:\Illuminate\Foundation\Application和\Illuminate\Routing\Router,容器會(huì)自動(dòng)解析??聪翶ernel的構(gòu)造函數(shù): 

  1. /** 
  2.      * Create a new HTTP kernel instance. 
  3.      * 
  4.      * @param  \Illuminate\Contracts\Foundation\Application  $app 
  5.      * @param  \Illuminate\Routing\Router  $router 
  6.      */ 
  7.     public function __construct(Application $app, Router $router) 
  8.     { 
  9.         $this->app    = $app; 
  10.         $this->router = $router; 
  11.  
  12.         foreach ($this->middlewareGroups as $key => $middleware) { 
  13.             $router->middlewareGroup($key, $middleware); 
  14.         } 
  15.  
  16.         foreach ($this->routeMiddleware as $key => $middleware) { 
  17.             $router->middleware($key, $middleware); 
  18.         } 
  19.     } 
  20.      
  21.     // \Illuminate\Routing\Router內(nèi)的方法 
  22.     public function middlewareGroup($name, array $middleware) 
  23.     { 
  24.         $this->middlewareGroups[$name] = $middleware; 
  25.  
  26.         return $this; 
  27.     } 
  28.      
  29.     public function middleware($name, $class) 
  30.     { 
  31.         $this->middleware[$name] = $class; 
  32.  
  33.         return $this; 
  34.     }  

構(gòu)造函數(shù)初始化了幾個(gè)中間件數(shù)組,$middleware[ ], $middlewareGroups[ ]和$routeMiddleware[ ],Laravel5.0的時(shí)候記得中間件數(shù)組還沒有分的這么細(xì)。然后就是Request的實(shí)例化: 

  1. $request = Illuminate\Http\Request::capture() 

這個(gè)過程以后再聊吧,不管咋樣,得到了Illuminate\Http\Request對(duì)象,然后傳入Kernel中: 

  1. /** 
  2.     * Handle an incoming HTTP request. 
  3.     * 
  4.     * @param  \Illuminate\Http\Request  $request 
  5.     * @return \Illuminate\Http\Response 
  6.     */ 
  7.    public function handle($request) 
  8.    { 
  9.        try { 
  10.            $request->enableHttpMethodParameterOverride(); 
  11.  
  12.            $response = $this->sendRequestThroughRouter($request); 
  13.        } catch (Exception $e) { 
  14.            $this->reportException($e); 
  15.  
  16.            $response = $this->renderException($request, $e); 
  17.        } catch (Throwable $e) { 
  18.            $this->reportException($e = new FatalThrowableError($e)); 
  19.  
  20.            $response = $this->renderException($request, $e); 
  21.        } 
  22.  
  23.        $this->app['events']->fire('kernel.handled', [$request, $response]); 
  24.  
  25.        return $response; 
  26.    }  

主要是sendRequestThroughRouter($request)函數(shù)執(zhí)行了轉(zhuǎn)換操作:把\Illuminate\Http\Request對(duì)象轉(zhuǎn)換成了\Illuminate\Http\Response,然后通過Kernel的send()方法發(fā)送給客戶端。同時(shí),順便觸發(fā)了kernel.handled內(nèi)核已處理請(qǐng)求事件。OK,重點(diǎn)關(guān)注下sendRequestThroughRouter($request)方法: 

  1. /** 
  2.      * Send the given request through the middleware / router. 
  3.      * 
  4.      * @param  \Illuminate\Http\Request  $request 
  5.      * @return \Illuminate\Http\Response 
  6.      */ 
  7.     protected function sendRequestThroughRouter($request) 
  8.     { 
  9.         $this->app->instance('request', $request); 
  10.  
  11.         Facade::clearResolvedInstance('request'); 
  12.  
  13.         /* 依次執(zhí)行$bootstrappers中每一個(gè)bootstrapper的bootstrap()函數(shù),做了幾件準(zhǔn)備事情: 
  14.         1. 環(huán)境檢測(cè) 
  15.         2. 配置加載 
  16.         3. 日志配置 
  17.         4. 異常處理 
  18.         5. 注冊(cè)Facades 
  19.         6. 注冊(cè)Providers 
  20.         7. 啟動(dòng)服務(wù) 
  21.          protected $bootstrappers = [ 
  22.             'Illuminate\Foundation\Bootstrap\DetectEnvironment'
  23.             'Illuminate\Foundation\Bootstrap\LoadConfiguration'
  24.             'Illuminate\Foundation\Bootstrap\ConfigureLogging'
  25.             'Illuminate\Foundation\Bootstrap\HandleExceptions'
  26.             'Illuminate\Foundation\Bootstrap\RegisterFacades'
  27.             'Illuminate\Foundation\Bootstrap\RegisterProviders'
  28.             'Illuminate\Foundation\Bootstrap\BootProviders'
  29.         ];*/ 
  30.         $this->bootstrap(); 
  31.  
  32.         return (new Pipeline($this->app)) 
  33.                     ->send($request) 
  34.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware) 
  35.                     ->then($this->dispatchToRouter()); 
  36.     }  

$this->bootstrap()主要是做了程序初始化工作,以后再聊具體細(xì)節(jié)。然后是Pipeline來傳輸Request,Laravel中把Pipeline管道單獨(dú)拿出來作為一個(gè)service(可看Illuminate/Pipeline文件夾),說明Pipeline做的事情還是很重要的:主要就是作為Request的傳輸管道,依次通過$middlewares[ ], 或middlewareGroups[ ], 或$routeMiddleware[ ]這些中間件的前置操作,和控制器的某個(gè)action或者直接閉包處理得到Response,然后又帶著Reponse依次通過$middlewares[ ], 或middlewareGroups[ ], 或$routeMiddleware[ ]這些中間件的后置操作得到準(zhǔn)備就緒的Response,然后通過send()發(fā)送給客戶端。

這個(gè)過程有點(diǎn)像汽車工廠的生產(chǎn)一樣,Pipeline是傳送帶,起初Request可能就是個(gè)汽車空殼子,經(jīng)過傳送帶旁邊的一個(gè)個(gè)機(jī)械手middleware@before的過濾和操作(如檢查零件剛度是不是合格,殼子尺寸是不是符合要求,給殼子噴個(gè)漆或抹個(gè)油啥的),然后進(jìn)入中央控制區(qū)加個(gè)發(fā)動(dòng)機(jī)(Controller@action,或Closure),然后又繼續(xù)經(jīng)過檢查和附加操作middleware@after(如添加個(gè)擋風(fēng)鏡啥的),然后通過門外等著的火車直接運(yùn)送到消費(fèi)者手里send()。在每一步裝配過程中,都需要Service來支持,Service是通過Container來解析{make()}提供的,并且Service是通過ServiceProvider注冊(cè)綁定{bind(),singleton(),instance()}到Container中的。

看下Pipeline的send()和through()源碼: 

  1. public function send($passable) 
  2.    { 
  3.        $this->passable = $passable; 
  4.  
  5.        return $this; 
  6.    } 
  7.     
  8.    public function through($pipes) 
  9.    { 
  10.        $this->pipes = is_array($pipes) ? $pipes : func_get_args(); 
  11.  
  12.        return $this; 
  13.    }  

send()傳送的對(duì)象是Request,through()所要通過的對(duì)象是$middleware[ ],OK,再看下dispatchToRouter()的源碼直接返回一個(gè)Closure: 

  1. protected function dispatchToRouter() 
  2.     { 
  3.         return function ($request) { 
  4.             $this->app->instance('request', $request); 
  5.  
  6.             return $this->router->dispatch($request); 
  7.         }; 
  8.     } 

 然后重點(diǎn)看下then()函數(shù)源碼: 

  1. public function then(Closure $destination) 
  2.     { 
  3.         $firstSlice = $this->getInitialSlice($destination); 
  4.  
  5.         $pipes = array_reverse($this->pipes); 
  6.  
  7.         // $this->passable = Request對(duì)象 
  8.         return call_user_func( 
  9.             array_reduce($pipes, $this->getSlice(), $firstSlice), $this->passable 
  10.         ); 
  11.     } 
  12.      
  13.     protected function getInitialSlice(Closure $destination) 
  14.     { 
  15.         return function ($passable) use ($destination) { 
  16.             return call_user_func($destination, $passable); 
  17.         }; 
  18.     } 

 這里假設(shè)$middlewares為(盡管源碼中$middlewares只有一個(gè)CheckForMaintenanceMode::class): 

  1. $middlewares = [ 
  2.     CheckForMaintenanceMode::class, 
  3.     AddQueuedCookiesToResponse::class, 
  4.     StartSession::class, 
  5.     ShareErrorsFromSession::class, 
  6.     VerifyCsrfToken::class, 
  7. ]; 

 先獲得***個(gè)slice(這里作者是比作'洋蔥',一層層的穿過,從一側(cè)穿過到另一側(cè),比喻倒也形象)并作為array_reduce()的初始值,就像上文中array_reduce()測(cè)試?yán)又械?0這個(gè)初始值,這個(gè)初始值現(xiàn)在是個(gè)閉包: 

  1. $destination = function ($request) { 
  2.     $this->app->instance('request', $request); 
  3.     return $this->router->dispatch($request); 
  4. }; 
  5.  
  6. $firstSlice = function ($passable) use ($destination) { 
  7.     return call_user_func($destination, $passable); 
  8. }; 

 OK,然后要對(duì)$middlewares[ ]進(jìn)行翻轉(zhuǎn),為啥要翻轉(zhuǎn)呢?

看過這篇Laravel學(xué)習(xí)筆記之Decorator Pattern文章就會(huì)發(fā)現(xiàn),在Client類利用Decorator Pattern進(jìn)行依次裝飾的時(shí)候,是按照$middlewares[ ]數(shù)組中值倒著new的: 

  1. public function wrapDecorator(IMiddleware $decorator) 
  2.    { 
  3.        $decorator = new VerifyCsrfToken($decorator); 
  4.        $decorator = new ShareErrorsFromSession($decorator); 
  5.        $decorator = new StartSession($decorator); 
  6.        $decorator = new AddQueuedCookiesToResponse($decorator); 
  7.        $response  = new CheckForMaintenanceMode($decorator); 
  8.  
  9.        return $response; 
  10.    } 

 這樣才能得到一個(gè)符合$middlewares[ ]順序的$response對(duì)象: 

  1. $response = new CheckForMaintenanceMode( 
  2.                 new AddQueuedCookiesToResponse( 
  3.                     new StartSession( 
  4.                         new ShareErrorsFromSession( 
  5.                             new VerifyCsrfToken( 
  6.                                 new Request() 
  7.                         ) 
  8.                     ) 
  9.                 ) 
  10.             ) 
  11.         ); 

 看下array_reduce()中的迭代回調(diào)函數(shù)getSlice(){這個(gè)迭代回調(diào)函數(shù)比作剝洋蔥時(shí)獲取每一層洋蔥slice,初始值是$firstSlice}: 

  1. protected function getSlice() 
  2.     { 
  3.         return function ($stack, $pipe) { 
  4.             return function ($passable) use ($stack, $pipe) { 
  5.                 if ($pipe instanceof Closure) { 
  6.                     return call_user_func($pipe, $passable, $stack); 
  7.                 } elseif (! is_object($pipe)) { 
  8.                     list($name, $parameters) = $this->parsePipeString($pipe); 
  9.                     $pipe = $this->container->make($name); 
  10.                     $parameters = array_merge([$passable, $stack], $parameters); 
  11.                 } else
  12.                     $parameters = [$passable, $stack]; 
  13.                 } 
  14.  
  15.                 return call_user_func_array([$pipe, $this->method], $parameters); 
  16.             }; 
  17.         }; 
  18.     } 

 返回的是個(gè)閉包,仔細(xì)看下第二層閉包里的邏輯,這里$middlewares[ ]傳入的是每一個(gè)中間件的名字,然后通過容器解析出每一個(gè)中間件對(duì)象: 

  1. $pipe = $this->container->make($name); 

并***用call_user_func_array([$class, $method], array $parameters)來調(diào)用這個(gè)$class里的$method方法,參數(shù)是$parameters。

Demo

接下來寫個(gè)demo看下整個(gè)流程。先簡化下getSlice()函數(shù),這里就默認(rèn)$pipe傳入的是類名稱(整個(gè)demo中所有class都在同一個(gè)文件內(nèi)):

 

  1. // PipelineTest.php 
  2.  
  3. // Get the slice in every step. 
  4. function getSlice() 
  5.     return function ($stack, $pipe) { 
  6.         return function ($passable) use ($stack, $pipe) { 
  7.             /** 
  8.              * @var Middleware $pipe 
  9.              */ 
  10.             return call_user_func_array([$pipe, 'handle'], [$passable, $stack]); 
  11.         }; 
  12.     }; 
  13.  

再把$middlewares[ ]中五個(gè)中間件類寫上,對(duì)于前置操作和后置操作做個(gè)簡化,直接echo字符串:

    1.  // PipelineTest.php 
    2. <?php 
    3.  
    4. interface Middleware 
    5.     public static function handle($request, Closure $closure); 
    6.  
    7. class CheckForMaintenanceMode implements Middleware 
    8.     public static function handle($request, Closure $next
    9.     { 
    10.         echo $request . ': Check if the application is in the maintenance status.' . PHP_EOL; 
    11.         $next($request); 
    12.     } 
    13.  
    14. class AddQueuedCookiesToResponse implements Middleware 
    15.     public static function handle($request, Closure $next
    16.     { 
    17.         $next($request); 
    18.         echo $request . ': Add queued cookies to the response.' . PHP_EOL; 
    19.     } 
    20.  
    21. class StartSession implements Middleware 
    22.     public static function handle($request, Closure $next
    23.     { 
    24.         echo $request . ': Start session of this request.' . PHP_EOL; 
    25.         $next($request); 
    26.         echo $request . ': Close session of this response.' . PHP_EOL; 
    27.     } 
    28.  
    29. class ShareErrorsFromSession implements Middleware 
    30.     public static function handle($request, Closure $next
    31.     { 
    32.         $next($request); 
    33.         echo $request . ': Share the errors variable from response to the views.' . PHP_EOL; 
    34.     } 
    35.  
    36. class VerifyCsrfToken implements Middleware 
    37.     public static function handle($request, Closure $next
    38.     { 
    39.         echo $request . ': Verify csrf token when post request.' . PHP_EOL; 
    40.         $next($request); 
    41.     } 
    42.  

給上完整的一個(gè)Pipeline類,這里的Pipeline對(duì)Laravel中的Pipeline做了稍微簡化,只選了幾個(gè)重要的函數(shù): 

  1. // PipelineTest.php 
  2.  
  3. class Pipeline  
  4.     /** 
  5.      * @var array 
  6.      */ 
  7.     protected $middlewares = []; 
  8.  
  9.     /** 
  10.      * @var int 
  11.      */ 
  12.     protected $request; 
  13.  
  14.     // Get the initial slice 
  15.     function getInitialSlice(Closure $destination) 
  16.     { 
  17.         return function ($passable) use ($destination) { 
  18.             return call_user_func($destination, $passable); 
  19.         }; 
  20.     } 
  21.      
  22.     // Get the slice in every step. 
  23.     function getSlice() 
  24.     { 
  25.         return function ($stack, $pipe) { 
  26.             return function ($passable) use ($stack, $pipe) { 
  27.                 /** 
  28.                  * @var Middleware $pipe 
  29.                  */ 
  30.                 return call_user_func_array([$pipe, 'handle'], [$passable, $stack]); 
  31.             }; 
  32.         }; 
  33.     } 
  34.      
  35.     // When process the Closure, send it as parameters. Here, input an int number. 
  36.     function send(int $request) 
  37.     { 
  38.         $this->request = $request; 
  39.         return $this; 
  40.     } 
  41.  
  42.     // Get the middlewares array. 
  43.     function through(array $middlewares) 
  44.     { 
  45.         $this->middlewares = $middlewares; 
  46.         return $this; 
  47.     } 
  48.      
  49.     // Run the Filters. 
  50.     function then(Closure $destination) 
  51.     { 
  52.         $firstSlice = $this->getInitialSlice($destination); 
  53.      
  54.         $pipes = array_reverse($this->middlewares); 
  55.          
  56.         $run = array_reduce($pipes, $this->getSlice(), $firstSlice); 
  57.      
  58.         return call_user_func($run, $this->request); 
  59.     } 

 OK,現(xiàn)在開始傳入Request,這里簡化為一個(gè)整數(shù)而不是Request對(duì)象了: 

  1. // PipelineTest.php 
  2.  
  3. /** 
  4.  * @return \Closure 
  5.  */ 
  6. function dispatchToRouter() 
  7.     return function ($request) { 
  8.         echo $request . ': Send Request to the Kernel, and Return Response.' . PHP_EOL; 
  9.     }; 
  10.  
  11. $request = 10; 
  12.  
  13. $middlewares = [ 
  14.     CheckForMaintenanceMode::class, 
  15.     AddQueuedCookiesToResponse::class, 
  16.     StartSession::class, 
  17.     ShareErrorsFromSession::class, 
  18.     VerifyCsrfToken::class, 
  19. ]; 
  20.  
  21. (new Pipeline())->send($request)->through($middlewares)->then(dispatchToRouter()); 

 執(zhí)行php PipelineTest.php得到Response: 

  1. 10: Check if the application is in the maintenance status. 
  2. 10: Start session of this request. 
  3. 10: Verify csrf token when post request. 
  4. 10: Send Request to the Kernel, and Return Response. 
  5. 10: Share the errors variable from response to the views. 
  6. 10: Close session of this response. 
  7. 10: Add queued cookies to the response. 

 一步一步分析下執(zhí)行過程:

1.首先獲取$firstSlice 

  1. $destination = function ($request) { 
  2.     echo $request . ': Send Request to the Kernel, and Return Response.' . PHP_EOL; 
  3. }; 
  4. $firstSlice = function ($passable) use ($destination) { 
  5.     return call_user_func($destination, $passable); 
  6. }; 

 這時(shí)經(jīng)過初始化后: 

  1. $this->request = 10; 
  2. $pipes = [ 
  3.     VerifyCsrfToken::class, 
  4.     ShareErrorsFromSession::class, 
  5.     StartSession::class, 
  6.     AddQueuedCookiesToResponse::class, 
  7.     CheckForMaintenanceMode::class, 
  8. ]; 

 2.執(zhí)行***次getSlice()后的結(jié)果作為新的$stack,其值為: 

  1. $stack   = $firstSlice; 
  2. $pipe    = VerifyCsrfToken::class; 
  3. $stack_1 = function ($passable) use ($stack, $pipe) { 
  4.         /** 
  5.         * @var Middleware $pipe 
  6.         */             
  7.     return call_user_func_array([$pipe, 'handle'], [$passable, $stack]); 
  8. };  

3.執(zhí)行第二次getSlice()后的結(jié)果作為新的$stack,其值為: 

  1. $stack   = $stack_1; 
  2. $pipe    = ShareErrorsFromSession::class; 
  3. $stack_2 = function ($passable) use ($stack, $pipe) { 
  4.         /** 
  5.         * @var Middleware $pipe 
  6.         */             
  7.     return call_user_func_array([$pipe, 'handle'], [$passable, $stack]); 
  8. };  

4.執(zhí)行第三次getSlice()后的結(jié)果作為新的$stack,其值為: 

  1. $stack   = $stack_2; 
  2. $pipe    = StartSession::class; 
  3. $stack_3 = function ($passable) use ($stack, $pipe) { 
  4.         /** 
  5.         * @var Middleware $pipe 
  6.         */             
  7.     return call_user_func_array([$pipe, 'handle'], [$passable, $stack]); 
  8. };  

5.執(zhí)行第四次getSlice()后的結(jié)果作為新的$stack,其值為: 

  1. $stack   = $stack_3; 
  2. $pipe    = AddQueuedCookiesToResponse::class; 
  3. $stack_4 = function ($passable) use ($stack, $pipe) { 
  4.         /** 
  5.         * @var Middleware $pipe 
  6.         */             
  7.     return call_user_func_array([$pipe, 'handle'], [$passable, $stack]); 
  8. };  

6.執(zhí)行第五次getSlice()后的結(jié)果作為新的$stack,其值為: 

  1. $stack   = $stack_4; 
  2. $pipe    = CheckForMaintenanceMode::class; 
  3. $stack_5 = function ($passable) use ($stack, $pipe) { 
  4.         /** 
  5.         * @var Middleware $pipe 
  6.         */             
  7.     return call_user_func_array([$pipe, 'handle'], [$passable, $stack]); 
  8. };  

這時(shí),$stack_5也就是then()里的$run,然后執(zhí)行call_user_func($run, 10),看執(zhí)行過程:

1.$stack_5(10) = CheckForMaintenanceMode::handle(10, $stack_4) 

  1. echo '10: Check if the application is in the maintenance status.' . PHP_EOL; 
  2. stack_4(10); 

 2.$stack_4(10) = AddQueuedCookiesToResponse::handle(10, $stack_3) 

  1. $stack_3(10); 
  2.  
  3. echo '10: Add queued cookies to the response.' . PHP_EOL;  

3.$stack_3(10) = StartSession::handle(10, $stack_2) 

  1. echo '10: Start session of this request.' . PHP_EOL; 
  2.  
  3. $stack_2(10); 
  4. echo '10: Close session of this response.' . PHP_EOL;

 4.$stack_2(10) = ShareErrorsFromSession::handle(10, $stack_1) 

  1. $stack_1(10); 
  2.  
  3. echo '10: Share the errors variable from response to the views.' . PHP_EOL;  

5.$stack_1(10) = VerifyCsrfToken::handle(10, $firstSlice) 

  1. echo '10: Verify csrf token when post request.' . PHP_EOL; 
  2.  
  3. $firstSlice(10); 

 6.$firstSlice(10) = 

  1. $firstSlice(10) = call_user_func($destination, 10) = echo '10: Send Request to the Kernel, and Return Response.' . PHP_EOL; 

OK,再把上面執(zhí)行順序整理一下: 

  1. 1. echo '10: Check if the application is in the maintenance status.' . PHP_EOL; // ***個(gè)step 
  2.  
  3. 3_1. echo '10: Start session of this request.' . PHP_EOL; // 第三個(gè)step 
  4.  
  5. 5. echo '10: Verify csrf token when post request.' . PHP_EOL; // 第五個(gè)step 
  6.  
  7. 6.echo '10: Send Request to the Kernel, and Return Response.' . PHP_EOL; //第六個(gè)step 
  8.  
  9. 4. echo '10: Share the errors variable from response to the views.' . PHP_EOL; // 第四個(gè)step 
  10.  
  11. 3_2. echo '10: Close session of this response.' . PHP_EOL; // 第三個(gè)step 
  12.  
  13. 2. echo '10: Add queued cookies to the response.' . PHP_EOL; // 第二個(gè)step  

經(jīng)過上面的一步步分析,就能很清楚Laravel源碼中Middleware的執(zhí)行步驟了。再復(fù)雜的步驟只要一步步拆解,就很清晰每一步的邏輯,然后把步驟組裝,就能知道全貌了。

總結(jié):本文主要學(xué)習(xí)了Laravel的Middleware的源碼,學(xué)習(xí)完后就知道沒有什么神秘之處,只需要?jiǎng)邮忠徊讲讲鸾饩托?。后面再學(xué)習(xí)下Container的源碼,到時(shí)見。

責(zé)任編輯:龐桂玉 來源: segmentfault
相關(guān)推薦

2016-09-20 10:15:49

LaravelPHPContainer

2016-09-21 21:49:37

PromiseJavascript前端

2011-04-22 14:14:21

MySQL偷窺線程

2021-02-20 06:09:46

libtask協(xié)程鎖機(jī)制

2010-06-12 13:08:51

UML全稱

2010-07-27 15:42:18

AdobeFlex

2022-12-07 08:02:43

Spring流程IOC

2022-02-14 14:47:11

SystemUIOpenHarmon鴻蒙

2016-12-15 09:44:31

框架Caffe源碼

2010-06-28 18:44:54

UML對(duì)象圖

2011-09-01 14:14:00

jQuery Mobi

2010-06-28 15:41:17

UML圖類型

2011-03-08 16:30:40

Proftpd

2011-03-08 16:30:24

Proftpd

2010-06-13 12:49:23

UML及建模

2022-05-17 10:42:36

reboot源碼解析

2022-08-08 08:03:44

MySQL數(shù)據(jù)庫CBO

2012-02-23 11:06:18

JavaPlay FramewPlay!

2017-06-07 14:58:39

Redis源碼學(xué)習(xí)Redis事務(wù)

2011-03-30 17:32:28

androidmaniAndroid開發(fā)
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)