laravel5.5源码笔记(四、路由)
今天这篇博文来探索一下laravel的路由。在第一篇讲laravel入口文件的博文里,我们就提到过laravel的路由是在application对象的初始化阶段,通过provider来加载的。这个路由服务提供者注册于vendor\laravel\framework\src\illuminate\foundation\application.php的registerbaseserviceproviders方法
protected function registerbaseserviceproviders() { $this->register(new eventserviceprovider($this)); $this->register(new logserviceprovider($this)); $this->register(new routingserviceprovider($this)); }
可以看到这个方法对路由provider进行了注册,我们最开始的博文也提到过,这个register方法实际上是运行了provider内部的register方法,现在来看一下这个provider都提供了些什么vendor\laravel\framework\src\illuminate\routing\routingserviceprovider.php
public function register() { $this->registerrouter(); $this->registerurlgenerator(); $this->registerredirector(); $this->registerpsrrequest(); $this->registerpsrresponse(); $this->registerresponsefactory(); $this->registercontrollerdispatcher(); }
这个服务提供者类中将许多对象都添加到了laravel的容器中,其中最重要的就是第一个注册的router类了。router中包含了我们写在路由文件中的get、post等各种方法,我们在路由文件中所使用的route::any()方法也是一个门面类,它所代理的对象便是router。
看过了路由的初始化,再来看一下我们在路由文件中所书写的路由是在什么时候加载到系统中的。在config/app.php文件中的privders数组中有一个名为routeserviceprovider的服务提供者会跟随laravel系统在加载配置的时候一起加载。这个文件位于\app\providers\routeserviceprovider.php刚刚的routing对路由服务进行了注册,这里的routeserviceprovider就要通过刚刚加载的系统类来加载我们写在routes路由文件夹中的路由了。
至于这个provider是何时开始启动的,还记得我们第一篇博客中介绍的illuminate\foundation\bootstrap\bootproviders这个provider吗?这个provider在注册时便会将已经注册过的provider,通过application中的boot方法,转发到它们自身的boot方法来启动了。
而routeserviceprovider这个类的boot方法通过它父类boot方法绕了一圈后又运行了自己的mapwebroutes方法。
//illuminate\foundation\support\providers\routeserviceprovider.php public function boot() { //设置路由中控制器的命名空间 $this->setrootcontrollernamespace(); //若路由已有缓存则加载缓存 if ($this->app->routesarecached()) { $this->loadcachedroutes(); } else { //这个方法启动了子类中的map方法来加载路由 $this->loadroutes(); $this->app->booted(function () { $this->app['router']->getroutes()->refreshnamelookups(); $this->app['router']->getroutes()->refreshactionlookups(); }); } } protected function loadroutes() { if (method_exists($this, 'map')) { //这里又把视线拉回了子类,执行了子类中的map方法 $this->app->call([$this, 'map']); } }
这里这个mapwebroutes方法有点绕,它先是通过门面类将route变成了router对象,接着又调用了router中不存在的方法middleware,通过php的魔术方法__call将执行对象变成了routeregistrar对象(\illuminate\routing\routeregistrar.php)在第三句调用group方法时,又将路由文件的地址传入了router方法的group方法中。
protected function mapwebroutes() { //这里的route门面指向依旧是router,middleware方法通过__call重载将对象指向了routeregistrar对象 route::middleware('web') //routeregistrar对象也加载了命名空间 ->namespace($this->namespace) //这里routeregistrar对象中的group方法又将对象方法指向了router中的group方法 ->group(base_path('routes/web.php')); }
//router类 public function __call($method, $parameters) { if (static::hasmacro($method)) { return $this->macrocall($method, $parameters); } //在这里通过重载实例化对象 if ($method == 'middleware') { return (new routeregistrar($this))->attribute($method, is_array($parameters[0]) ? $parameters[0] : $parameters); } return (new routeregistrar($this))->attribute($method, $parameters[0]); }
//\illuminate\routing\routeregistrar.php public function group($callback) { $this->router->group($this->attributes, $callback); }
//router类 public function group(array $attributes, $routes) { //更新路由栈这个数组 $this->updategroupstack($attributes); // once we have updated the group stack, we'll load the provided routes and // merge in the group's attributes when the routes are created. after we // have created the routes, we will pop the attributes off the stack. $this->loadroutes($routes); //出栈 array_pop($this->groupstack); } protected function loadroutes($routes) { //这里判断闭包是因为laravel的路由文件中也允许我们使用group对路由进行分组 if ($routes instanceof closure) { $routes($this); } else { $router = $this; //传入的$routes是一个文件路径,在这里将其引入执行,在这里就开始一条一条的导入路由了 require $routes; } }
绕了这么一大圈终于把写在routes文件夹中的路由文件加载进laravel系统了。接下来的操作就比较简单了。
先来看一下我的路由文件中写了些什么。
路由文件中只写了两个路由,在route加载后通过dd(app()->router);打印出来看一下吧。