php使用Symfony EventDispatcher 组件

简介: php使用Symfony EventDispatcher 组件

大家好,这篇文章将通过我在实际开发工作中的例子,来介绍Symfony的EventDispatcher组件的使用及实现原理。

这个组件在实际开发过程中非常的有用,它能够使代码的业务逻辑变的非常清晰,增加代码的复用性,代码的耦合性也大大降低。

简介

具体的介绍大家可以查看官方的文档,下面是文档地址。

文档地址

组成

一个 dispatcher 对象,保存了事件名称和其对应监听器

一个 event,有一个全局唯一的事件名称。包含一些在订阅器里需要访问的对象。

使用示例

1. 初始化,添加相应监听事件

# 初始时,添加监听器
$dispatcher = new EventDispatcher();
$disptacher->addSubscriber(new BIReportSubscriber());   // BI上报功能
$disptacher->addSubscriber(new MediaPlayerSubscriber());  // 维护播放器信息统一

  1. Symfony\Component\EventDispatcher\EventDispatcher

2. 监听的事件

class BIReportSubscriber implements EventSubscriberInterface
{
    public static function getSubscribedEvents ()
    {
      // 监听的不同事件,当事件触发时,会调用 onResponse 方法
        return [
            MusicResponseEvent::NAME => 'onResponse',  
            ChildrenResponseEvent::NAME => 'onResponse',
            FmResponseEvent::NAME => 'onResponse',
            NewsResponseEvent::NAME => 'onResponse',
        ];
    }
    public function onResponse(AResponseEvent $event)
    {
      /*
       * 一些具体的业务逻辑
       * 进行 BI 上报
       */
    }

class MediaPlayerSubscriber implements EventSubscriberInterface
{
    public static function getSubscribedEvents ()
    {
        return [
            MusicResponseEvent::NAME => 'onResponse',
            FmResponseEvent::NAME => 'onResponse',
            ChildrenResponseEvent::NAME => 'onResponse',
            NewsResponseEvent::NAME => 'onResponse',
        ];
    }
    public function onResponse(AResponseEvent $event)
    {
      /*
       * 一些具体的业务逻辑
       * 维护播放器信息统一
       */
    }

实现 getSubscribedEvents 方法,完成事件的绑定。当事件触发时,dispatcher 会调用绑定的方法,并将抛出的事件当做参数传入。

事件绑定的方法 onResponse 可以是任何名字。

在 onResponse 方法中,通过 $event 获取要操作的对象。

3. 事件代码

class FmResponseEvent extends Event
{
    const NAME = 'fm.response';  // 事件名,事件的唯一标识
    protected $request;  // 在监听器里要操作的对象
    protected $response;  // 在监听器里要操作的对象
    public function __construct (Request $request, Response $response)
    {
        $this->request = $request;
        $this->response = $response;
    }
    /**
     * @return Request
     */
    public function getRequest()
    {
        return $this->request;
    }
    /**
     * @return Response
     */
    public function getResponse()
    {
        return $this->response;
    }
}

  1. 继承 Symfony\Component\EventDispatcher\Event
  2. 在订阅器的业务逻辑上,需要使用 $request 和 $response 对象,所以本事件包含这两个类的对象。

4. 触发事件

$event = new FmResponseEvent($request, $response);
 $dispatcher->dispatch($event::NAME, $event);

  1. dispathcer 会按照优先级,依次执行订阅器中事件绑定的方法

原码解读

1 简化的 EventDispatcher 源码

class EventDispatcher implements EventDispatcherInterface
{
    private $listeners = array();
    private $sorted = array();
    /**
     * 触发事件
     */
    public function dispatch($eventName, Event $event)
    {
        if ($listeners = $this->getListeners($eventName)) {
            $this->doDispatch($listeners, $eventName, $event);
        }
        return $event;
    }
    /**
     *  根据事件名,搜索监听器
     */
    public function getListeners($eventName)
    {
        if (empty($this->listeners[$eventName])) {
            return array();
        }
        if (!isset($this->sorted[$eventName])) {
           $this->sortListeners($eventName);
        }
        return $this->sorted[$eventName];
    }
    /**
     * 换优先级将监听器排序
     * @param string $eventName
     */
    private function sortListeners($eventName)
    {
        krsort($this->listeners[$eventName]);
        $this->sorted[$eventName] = array();
        foreach ($this->listeners[$eventName] as $priority => $listeners) {
            foreach ($listeners as $k => $listener) {
                if (\is_array($listener) && isset($listener[0]) && $listener[0] instanceof \Closure) {
                    $listener[0] = $listener[0]();
                    $this->listeners[$eventName][$priority][$k] = $listener;
                }
                $this->sorted[$eventName][] = $listener;
            }
        }
    }
    protected function doDispatch($listeners, $eventName, Event $event)
    {
        foreach ($listeners as $listener) {
            if ($event->isPropagationStopped()) {
                break;
            }
            \call_user_func($listener, $event, $eventName, $this);
     }
    /**
     * 添加订阅器
     */
    public function addSubscriber(EventSubscriberInterface $subscriber)
    {
        foreach ($subscriber->getSubscribedEvents() as $eventName => $params) {
            if (is_string($params)) {
                $this->addListener($eventName, array($subscriber, $params));
            } elseif (is_string($params[0])) {
                $this->addListener($eventName, array($subscriber, $params[0]), isset($params[1]) ? $params[1] : 0);
            } else {
                foreach ($params as $listener) {
                    $this->addListener($eventName, array($subscriber, $listener[0]), isset($listener[1]) ? $listener[1] : 0);
                }
            }
        }
    }
    public function addListener($eventName, $listener, $priority = 0)
    {
        $this->listeners[$eventName][$priority][] = $listener;
        unset($this->sorted[$eventName]);
    }
}



目录
相关文章
|
7月前
|
缓存 安全 PHP
【PHP开发专栏】Symfony框架核心组件解析
【4月更文挑战第30天】本文介绍了Symfony框架,一个模块化且高性能的PHP框架,以其可扩展性和灵活性备受开发者青睐。文章分为三部分,首先概述了Symfony的历史、特点和版本。接着,详细解析了HttpFoundation(处理HTTP请求和响应)、Routing(映射HTTP请求到控制器)、DependencyInjection(管理依赖关系)、EventDispatcher(实现事件驱动编程)以及Security(处理安全和认证)等核心组件。
164 3
|
2月前
|
搜索推荐 应用服务中间件 PHP
php如何开启COM组件
请注意,上述步骤可能根据您的具体环境(如操作系统版本、PHP版本或服务器类型)有所变化。在操作过程中遇到困难时,建议直接咨询您的托管服务提供商或查阅等专业平台提供的详尽文档与解决方案,以获取个性化的技术支持。
44 1
|
5月前
|
测试技术 PHP 数据库
深入解析PHP框架:Symfony框架详解与应用
📚 Symfony框架深度解析:模块化设计提升开发效率,性能优越,灵活性高,支持MVC模式。探索控制器、路由、模板(如Twig)、服务容器、事件调度器等核心概念。还包括表单处理、数据库集成( Doctrine ORM)、安全组件、国际化支持及调试工具。使用Symfony CLI快速创建应用,内置PHPUnit测试支持。开始你的高质量Web开发之旅吧!
89 2
|
6月前
|
前端开发 PHP 数据库
PHP框架详解之Symfony框架
在现代Web开发中,PHP作为一种灵活且功能强大的编程语言,广泛应用于各种Web应用程序的开发中。为了提高开发效率、代码的可维护性和可扩展性,开发者通常会选择使用框架来构建应用程序。在众多PHP框架中,Symfony以其强大的功能和灵活性脱颖而出,成为开发者们的首选之一。本文将详细介绍Symfony框架,包括其历史、核心功能、组件、安装和使用方法,以及在实际开发中的应用案例。
57 2
|
5月前
|
存储 缓存 安全
PHP框架详解 - symfony框架
PHP框架详解 - symfony框架
|
JSON PHP 数据格式
layui框架实战案例(1):layui组件table异步加载数据结合php后台动态翻页的解决方案
layui框架实战案例(1):layui组件table异步加载数据结合php后台动态翻页的解决方案
326 0
|
存储 数据采集 JavaScript
php对接阿里云API调用企业税号查询的高级实战案例解析(下拉筛选查询、远程调用API、xm-select组件应用)
php对接阿里云API调用企业税号查询的高级实战案例解析(下拉筛选查询、远程调用API、xm-select组件应用)
688 31
|
安全 前端开发 PHP
layui框架实战案例(21):layui上传的哪些事(layui.upload组件、 file文件域、php后台上传)
layui框架实战案例(21):layui上传的哪些事(layui.upload组件、 file文件域、php后台上传)
1343 0
|
JSON 前端开发 API
layui框架实战案例(8):web图片裁切插件croppers.js组件实现上传图片的自定义截取(含php后端)
layui框架实战案例(8):web图片裁切插件croppers.js组件实现上传图片的自定义截取(含php后端)
582 0
|
PHP 数据库 计算机视觉
PHP的组件是什么意思?底层原理是什么?
PHP的组件是什么意思?底层原理是什么?
177 0