Facades

什么是Facades

Facades是我们在Laravel应用开发中使用频率很高的一个组件,叫组件不太合适,其实它们是一组静态类接口或者说代理,让开发者能简单的访问绑定到服务容器里的各种服务。Laravel文档中对Facades的解释如下:

Facades 为应用程序的 服务容器 中可用的类提供了一个「静态」接口。Laravel 本身附带许多的 facades,甚至你可能在不知情的状况下已经在使用他们!Laravel 「facades」作为在服务容器内基类的「静态代理」,拥有简洁、易表达的语法优点,同时维持着比传统静态方法更高的可测试性和灵活性。

我们经常用的Route就是一个Facade, 它是 \Illuminate\Support\Facades\Route类的别名,这个Facade类代理的是注册到服务容器里的 router服务,所以通过Route类我们就能够方便地使用router服务中提供的各种服务,而其中涉及到的服务解析完全是隐式地由Laravel完成的,这在一定程度上让应用程序代码变的简洁了不少。下面我们会大概看一下Facades从被注册进Laravel框架到被应用程序使用这中间的流程。Facades是和ServiceProvider紧密配合的所以如果你了解了中间的这些流程对开发自定义Laravel组件会很有帮助。

注册Facades

说到Facades注册又要回到再介绍其它核心组建时提到过很多次的Bootstrap阶段了,在让请求通过中间件和路由之前有一个启动应用程序的过程:

//Class: \Illuminate\Foundation\Http\Kernel
protected function sendRequestThroughRouter($request)
{$this->app->instance('request', $request);Facade::clearResolvedInstance('request');$this->bootstrap();return (new Pipeline($this->app))->send($request)->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)->then($this->dispatchToRouter());
}
//引导启动Laravel应用程序
public function bootstrap()
{if (! $this->app->hasBeenBootstrapped()) {/**依次执行$bootstrappers中每一个bootstrapper的bootstrap()函数$bootstrappers = ['Illuminate\Foundation\Bootstrap\DetectEnvironment','Illuminate\Foundation\Bootstrap\LoadConfiguration','Illuminate\Foundation\Bootstrap\ConfigureLogging','Illuminate\Foundation\Bootstrap\HandleExceptions','Illuminate\Foundation\Bootstrap\RegisterFacades','Illuminate\Foundation\Bootstrap\RegisterProviders','Illuminate\Foundation\Bootstrap\BootProviders',];*/$this->app->bootstrapWith($this->bootstrappers());}
}

在启动应用的过程中 Illuminate\Foundation\Bootstrap\RegisterFacades这个阶段会注册应用程序里用到的Facades。

class RegisterFacades
{/*** Bootstrap the given application.** @param  \Illuminate\Contracts\Foundation\Application  $app* @return void*/public function bootstrap(Application $app){Facade::clearResolvedInstances();Facade::setFacadeApplication($app);AliasLoader::getInstance(array_merge($app->make('config')->get('app.aliases', []),$app->make(PackageManifest::class)->aliases()))->register();}
}

在这里会通过 AliasLoader类的实例将为所有Facades注册别名,Facades和别名的对应关系存放在 config/app.php文件的 $aliases数组中

'aliases' => ['App' => Illuminate\Support\Facades\App::class,'Artisan' => Illuminate\Support\Facades\Artisan::class,'Auth' => Illuminate\Support\Facades\Auth::class,......'Route' => Illuminate\Support\Facades\Route::class,......
]

看一下AliasLoader里是如何注册这些别名的

// class: Illuminate\Foundation\AliasLoader
public static function getInstance(array $aliases = [])
{if (is_null(static::$instance)) {return static::$instance = new static($aliases);}$aliases = array_merge(static::$instance->getAliases(), $aliases);static::$instance->setAliases($aliases);return static::$instance;
}
public function register()
{if (! $this->registered) {$this->prependToLoaderStack();$this->registered = true;}
}
protected function prependToLoaderStack()
{// 把AliasLoader::load()放入自动加载函数队列中,并置于队列头部spl_autoload_register([$this, 'load'], true, true);
}

通过上面的代码段可以看到AliasLoader将load方法注册到了SPL __autoload函数队列的头部。看一下load方法的源码:

public function load($alias)
{if (isset($this->aliases[$alias])) {return class_alias($this->aliases[$alias], $alias);}
}

在load方法里把 $aliases配置里的Facade类创建了对应的别名,比如当我们使用别名类 Route时PHP会通过AliasLoader的load方法为 Illuminate\Support\Facades\Route类创建一个别名类 Route,所以我们在程序里使用别 Route其实使用的就是 Illuminate\Support\Facades\Route类。

解析Facade代理的服务

把Facades注册到框架后我们在应用程序里就能使用其中的Facade了,比如注册路由时我们经常用 Route::get('/uri','Controller@action);,那么 Route是怎么代理到路由服务的呢,这就涉及到在Facade里服务的隐式解析了, 我们看一下Route类的源码:

namespace Illuminate\Support\Facades;
class Route extends Facade
{/*** Get the registered name of the component.** @return string*/protected static function getFacadeAccessor(){return 'router';}
}

只有简单的一个方法,并没有 get, post, delete等那些路由方法, 父类里也没有,不过我们知道调用类不存在的静态方法时会触发PHP的 __callStatic静态方法

namespace Illuminate\Support\Facades;
abstract class Facade
{public static function __callStatic($method, $args){$instance = static::getFacadeRoot();if (! $instance) {throw new RuntimeException('A facade root has not been set.');}return $instance->$method(...$args);}//获取Facade根对象public static function getFacadeRoot(){return static::resolveFacadeInstance(static::getFacadeAccessor());}/*** 从服务容器里解析出Facade对应的服务*/protected static function resolveFacadeInstance($name){if (is_object($name)) {return $name;}if (isset(static::$resolvedInstance[$name])) {return static::$resolvedInstance[$name];}return static::$resolvedInstance[$name] = static::$app[$name];}
}

通过上面的分析我们可以看到Facade类的父类 Illuminate\Support\Facades\Facade是Laravel提供的一个抽象外观类从而让我们能够方便的根据需要增加新的子系统的外观类,并让外观类能够正确代理到其对应的子系统(或者叫服务)。

通过在子类Route Facade里设置的accessor(字符串router), 从服务容器中解析出对应的服务,router服务是在应用程序初始化时的registerBaseServiceProviders阶段(具体可以看Application的构造方法)被 \Illuminate\Routing\RoutingServiceProvider注册到服务容器里的:

class RoutingServiceProvider extends ServiceProvider
{/*** Register the service provider.** @return void*/public function register(){$this->registerRouter();......}/*** Register the router instance.** @return void*/protected function registerRouter(){$this->app->singleton('router', function ($app) {return new Router($app['events'], $app);});}......
}

router服务对应的类就是 \Illuminate\Routing\Router, 所以Route Facade实际上代理的就是这个类,Route::get实际上调用的是 \Illuminate\Routing\Router对象的get方法。

/*** Register a new GET route with the router.** @param  string  $uri* @param  \Closure|array|string|null  $action* @return \Illuminate\Routing\Route*/
public function get($uri, $action = null)
{return $this->addRoute(['GET', 'HEAD'], $uri, $action);
}

补充两点:

  1. 解析服务时用的 static::$app是在最开始的 RegisterFacades里设置的,它引用的是服务容器。

  2. static::$app['router'];以数组访问的形式能够从服务容器解析出router服务是因为服务容器实现了SPL的ArrayAccess接口, 对这个没有概念的可以看下PHP ArrayAccess的官方文档

总结

通过梳理Facade的注册和使用流程我们可以看到Facade和服务提供器(ServiceProvider)是紧密配合的,所以如果以后自己写Laravel自定义服务时除了通过组件的ServiceProvider将服务注册进服务容器,还可以在组件中提供一个Facade让应用程序能够方便的访问你写的自定义服务。

Laravel Facades的实现原理相关推荐

  1. php的解析别名,浅谈laravel aliases别名的原理

    在laravel发现有些类可以直接use 类名,就能使用了,例如use DB;就可以使用DB类了,问题是DB这个类并不在根命名空间,这里面实际就是用到了别名. 先通过如下例子来分析基本原理 建立如下文 ...

  2. 如何使用 Laravel Facades ?

    2019独角兽企业重金招聘Python工程师标准>>> Facade 布局是在面向对象编程中经常使用的一种软件设计布局方式.Facade 实际上是一种包括复杂函数库的类,提供了更加简 ...

  3. 代码提示_PHPStorm 支持 Laravel Facades 的代码提示

    好久没用 Laravel 和 PHPStorm 了,最近开发了小项目,用的时候发现 Laravel 的 Facades 是没有代码补全提示的,原因是 Facades 是基于 静态方法重载 __call ...

  4. Laravel框架一:原理机制篇

    转载自http://www.cnblogs.com/XiongMaoMengNan/p/6644892.html Laravel作为在国内国外都颇为流行的PHP框架,风格优雅,其拥有自己的一些特点. ...

  5. laravel cookie加密解密原理

    通过控制台的 cookie 信息我们会发现,每次请求之后,关键的 cookie,如PHPSESSID.XSRF-TOKEN 都会发生变化,并且都是很长的一串字符串. 其实这是一个 json 数组,其中 ...

  6. php laravel terminate中间件 实现原理与实例

    总所周知,laravel中的中间件 分为 前置,后置,terminable中间件(也叫可终止的中间件),在官方文档中是这样介绍的       这样接下来看laravel的代码实现 首先我的larave ...

  7. Laravel 广播系统工作原理

    这是一篇译文,译文首发于 Laravel 广播系统工作原理,转载请注明出处. 今天,让我们深入研究下 Laravel 的广播系统.广播系统的目的是用于实现当服务端完成某种特定功能后向客户端推送消息的功 ...

  8. 浅析 Laravel 底层原理:契约(Contracts)

    简介 Laravel 中的契约是指框架提供的一系列定义核心服务的接口(interface). 例如,Illuminate\Contracts\Queue\Queue 契约定义了队列任务所需的方法,而 ...

  9. 简单两步就能将 Laravel Log 信息发到其他平台上

    我们在写代码时,都想自己的代码尽可能的不影响现有的代码. 或者说,最大化不改动任何代码的情况下,如何嵌入我们的新功能?这是我们常说的「非侵入式」的开发方式. 使用「非侵入式」的开发模式,主要在提供第三 ...

最新文章

  1. 微信小程序开发中如何实现侧边栏的滑动效果?
  2. 协同办公工具解决了什么问题?
  3. practical rendering and computation with dx11 ebook
  4. Python实现文本自动分类(朴素贝叶斯方法)
  5. python的groupby中函数详解_python groupby函数用法
  6. Windows和Linux双系统时间不对的问题。
  7. Apache Shiro 框架简介和下载导入
  8. Vista登录密码破解
  9. 输出有样式的php,PHP导出带样式的Excel
  10. GridView批量删除页面最后N条数据时自动翻到上一页问题
  11. java 判断ip和port是否存活_java判断IP和端口号是否可以访问
  12. 牛客小白月赛9: div.2 A(线性筛)
  13. 行列式键盘+共阴极数码管显示
  14. 计算机辅助工程分析及应用论文,浅谈计算机辅助工程(CAE) 毕业设计(论文).doc...
  15. postgres 判断null_postgresql基础:null的那些坑
  16. 【HTML 5】HTML5 Canvas rect(), strokeRect() 和 fillRect() 的区别
  17. 三种方法求解Fibonacci(斐波那契)数列
  18. Microsoft 365 E5 开发者扩容到5T
  19. java多线程(8):Lamda表达式
  20. 【科技知识】世界量子计算发展史

热门文章

  1. cocos2d-x JS 重力感应监听事件
  2. 如何保护 .NET 应用的安全?
  3. nyoj914Yougth的最大化(二分搜索 + 贪心)
  4. Use grep to report back only line numbers
  5. chrome和火狐获取资源
  6. Codeforces Round #564 (Div. 2) C. Nauuo and Cards
  7. 老男孩shell实战读书笔记 (6-10章节)
  8. dbvisualizer free 9.5.6中文乱码
  9. 一双木棋chess[九省联考2018]
  10. SSH远程登录VWware上的LFS