gpt4 book ai didi

php - 使用 Symfony 2 事件调度程序

转载 作者:行者123 更新时间:2023-12-03 00:13:12 27 4
gpt4 key购买 nike

Symfony 2 bundle 开发人员应该如何使用现有 Symfony 2 系统附带的事件调度程序(如果有的话)?

我一直在挖掘 Symfony 事件调度程序的源代码,我所看到的一些内容让我有点困惑,作为一个第三方包创建者,应该如何使用 Symfony 附带的事件调度程序.

具体来说,我注意到现有的 Symfony 系统有两个事件调度程序服务。 event_dispatcherdebug.event_dispatcherHttpKernel 使用哪种服务取决于环境,并由生成的 dev 或 prod 容器文件驱动。

//dev kernel instantiation uses `debug.event_dispatcher` service
new \Symfony\Component\HttpKernel\DependencyInjection\ContainerAwareHttpKernel(
$this->get('debug.event_dispatcher'),
$this,
$this->get('debug.controller_resolver')
);

//prod kernel instantiation uses `event_dispatcher` service
new \Symfony\Component\HttpKernel\DependencyInjection\ContainerAwareHttpKernel(
$this->get('event_dispatcher'),
$this,
new \Symfony\Bundle\FrameworkBundle\Controller\ControllerResolver($this, $this->get('controller_name_converter'), $this->get('monolog.logger.request', ContainerInterface::NULL_ON_INVALID_REFERENCE)));

到目前为止,这一切都是有意义的 - 因为它是在 Web 配置文件的事件选项卡中实现功能的 debug.event_dispatcher,包括查看哪些监听器被调用以及哪些监听器未被调用的能力。

但是,我注意到大多数(如果不是全部)第三方 bundle 都使用硬编码的 event_dispatcher 服务调用。例如,JMS/JobQueueBundle使用以下内容

$this->dispatcher = $this->getContainer()->get('event_dispatcher');

像这样的事件正确调度,但是debug.event_dispatcher不知道它们,这意味着 Symfony Web Profiler 会错误地将调用的监听器列为未调用。此外,尚不清楚 bundle 作者如何避免这种情况,因为他们不具有生成容器文件的优势,并且 HTTP 内核对象不会公开 protected 调度程序对象的访问器。

那么,这是 Symfony 中的一个错误吗?

或者 event_dispatcher 服务仅用于内核事件,这意味着所有这些 bundle 作者都在滥用它?

或者(最有可能的候选人),是否还有其他我遗漏或没有考虑过的事情?

最佳答案

看起来我上面描述的场景并不适用于最新版本的 Symfony (2.4.1)。具体来说,在2.4.1中,生成的应用程序容器文件

app/cache/dev/appDevDebugProjectContainer.php

包含以下内容

$this->aliases = array(
//...
'event_dispatcher' => 'debug.event_dispatcher',
//...
);

也就是说,与我正在开发的 Symfony 2.3.6 项目不同,event_dispatcher 服务已被别名为 debug.event_dispatcher服务(当 Symfony 在开发模式下运行时)。这意味着当其他 bundle 在开发模式下请求 event_dispatcher 服务时,它们实际上获得了 debug.event_dispatcher 服务。这让 debug.event_dispatcher 了解所有事件,并且可以正确报告调度了哪些事件。

虽然这不是一个具体的答案,但它确实表明 Symfony 团队已经意识到这个问题,这让我相信他们打算让 Bundle 开发人员使用自己的 event_dispatch 服务事件。

关于php - 使用 Symfony 2 事件调度程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21175119/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com