vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php line 141

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <[email protected]>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\EventDispatcher\Debug;
  11. use Psr\Log\LoggerInterface;
  12. use Symfony\Component\EventDispatcher\Event;
  13. use Symfony\Component\EventDispatcher\EventDispatcherInterface;
  14. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  15. use Symfony\Component\Stopwatch\Stopwatch;
  16. /**
  17.  * Collects some data about event listeners.
  18.  *
  19.  * This event dispatcher delegates the dispatching to another one.
  20.  *
  21.  * @author Fabien Potencier <[email protected]>
  22.  */
  23. class TraceableEventDispatcher implements TraceableEventDispatcherInterface
  24. {
  25.     protected $logger;
  26.     protected $stopwatch;
  27.     private $called;
  28.     private $dispatcher;
  29.     private $wrappedListeners;
  30.     private $orphanedEvents;
  31.     public function __construct(EventDispatcherInterface $dispatcherStopwatch $stopwatchLoggerInterface $logger null)
  32.     {
  33.         $this->dispatcher $dispatcher;
  34.         $this->stopwatch $stopwatch;
  35.         $this->logger $logger;
  36.         $this->called = array();
  37.         $this->wrappedListeners = array();
  38.         $this->orphanedEvents = array();
  39.     }
  40.     /**
  41.      * {@inheritdoc}
  42.      */
  43.     public function addListener($eventName$listener$priority 0)
  44.     {
  45.         $this->dispatcher->addListener($eventName$listener$priority);
  46.     }
  47.     /**
  48.      * {@inheritdoc}
  49.      */
  50.     public function addSubscriber(EventSubscriberInterface $subscriber)
  51.     {
  52.         $this->dispatcher->addSubscriber($subscriber);
  53.     }
  54.     /**
  55.      * {@inheritdoc}
  56.      */
  57.     public function removeListener($eventName$listener)
  58.     {
  59.         if (isset($this->wrappedListeners[$eventName])) {
  60.             foreach ($this->wrappedListeners[$eventName] as $index => $wrappedListener) {
  61.                 if ($wrappedListener->getWrappedListener() === $listener) {
  62.                     $listener $wrappedListener;
  63.                     unset($this->wrappedListeners[$eventName][$index]);
  64.                     break;
  65.                 }
  66.             }
  67.         }
  68.         return $this->dispatcher->removeListener($eventName$listener);
  69.     }
  70.     /**
  71.      * {@inheritdoc}
  72.      */
  73.     public function removeSubscriber(EventSubscriberInterface $subscriber)
  74.     {
  75.         return $this->dispatcher->removeSubscriber($subscriber);
  76.     }
  77.     /**
  78.      * {@inheritdoc}
  79.      */
  80.     public function getListeners($eventName null)
  81.     {
  82.         return $this->dispatcher->getListeners($eventName);
  83.     }
  84.     /**
  85.      * {@inheritdoc}
  86.      */
  87.     public function getListenerPriority($eventName$listener)
  88.     {
  89.         // we might have wrapped listeners for the event (if called while dispatching)
  90.         // in that case get the priority by wrapper
  91.         if (isset($this->wrappedListeners[$eventName])) {
  92.             foreach ($this->wrappedListeners[$eventName] as $index => $wrappedListener) {
  93.                 if ($wrappedListener->getWrappedListener() === $listener) {
  94.                     return $this->dispatcher->getListenerPriority($eventName$wrappedListener);
  95.                 }
  96.             }
  97.         }
  98.         return $this->dispatcher->getListenerPriority($eventName$listener);
  99.     }
  100.     /**
  101.      * {@inheritdoc}
  102.      */
  103.     public function hasListeners($eventName null)
  104.     {
  105.         return $this->dispatcher->hasListeners($eventName);
  106.     }
  107.     /**
  108.      * {@inheritdoc}
  109.      */
  110.     public function dispatch($eventNameEvent $event null)
  111.     {
  112.         if (null === $event) {
  113.             $event = new Event();
  114.         }
  115.         if (null !== $this->logger && $event->isPropagationStopped()) {
  116.             $this->logger->debug(sprintf('The "%s" event is already stopped. No listeners have been called.'$eventName));
  117.         }
  118.         $this->preProcess($eventName);
  119.         $this->preDispatch($eventName$event);
  120.         $e $this->stopwatch->start($eventName'section');
  121.         $this->dispatcher->dispatch($eventName$event);
  122.         if ($e->isStarted()) {
  123.             $e->stop();
  124.         }
  125.         $this->postDispatch($eventName$event);
  126.         $this->postProcess($eventName);
  127.         return $event;
  128.     }
  129.     /**
  130.      * {@inheritdoc}
  131.      */
  132.     public function getCalledListeners()
  133.     {
  134.         $called = array();
  135.         foreach ($this->called as $eventName => $listeners) {
  136.             foreach ($listeners as $listener) {
  137.                 $called[$eventName.'.'.$listener->getPretty()] = $listener->getInfo($eventName);
  138.             }
  139.         }
  140.         return $called;
  141.     }
  142.     /**
  143.      * {@inheritdoc}
  144.      */
  145.     public function getNotCalledListeners()
  146.     {
  147.         try {
  148.             $allListeners $this->getListeners();
  149.         } catch (\Exception $e) {
  150.             if (null !== $this->logger) {
  151.                 $this->logger->info('An exception was thrown while getting the uncalled listeners.', array('exception' => $e));
  152.             }
  153.             // unable to retrieve the uncalled listeners
  154.             return array();
  155.         }
  156.         $notCalled = array();
  157.         foreach ($allListeners as $eventName => $listeners) {
  158.             foreach ($listeners as $listener) {
  159.                 $called false;
  160.                 if (isset($this->called[$eventName])) {
  161.                     foreach ($this->called[$eventName] as $l) {
  162.                         if ($l->getWrappedListener() === $listener) {
  163.                             $called true;
  164.                             break;
  165.                         }
  166.                     }
  167.                 }
  168.                 if (!$called) {
  169.                     if (!$listener instanceof WrappedListener) {
  170.                         $listener = new WrappedListener($listenernull$this->stopwatch$this);
  171.                     }
  172.                     $notCalled[$eventName.'.'.$listener->getPretty()] = $listener->getInfo($eventName);
  173.                 }
  174.             }
  175.         }
  176.         uasort($notCalled, array($this'sortListenersByPriority'));
  177.         return $notCalled;
  178.     }
  179.     public function getOrphanedEvents(): array
  180.     {
  181.         return $this->orphanedEvents;
  182.     }
  183.     public function reset()
  184.     {
  185.         $this->called = array();
  186.         $this->orphanedEvents = array();
  187.     }
  188.     /**
  189.      * Proxies all method calls to the original event dispatcher.
  190.      *
  191.      * @param string $method    The method name
  192.      * @param array  $arguments The method arguments
  193.      *
  194.      * @return mixed
  195.      */
  196.     public function __call($method$arguments)
  197.     {
  198.         return \call_user_func_array(array($this->dispatcher$method), $arguments);
  199.     }
  200.     /**
  201.      * Called before dispatching the event.
  202.      *
  203.      * @param string $eventName The event name
  204.      * @param Event  $event     The event
  205.      */
  206.     protected function preDispatch($eventNameEvent $event)
  207.     {
  208.     }
  209.     /**
  210.      * Called after dispatching the event.
  211.      *
  212.      * @param string $eventName The event name
  213.      * @param Event  $event     The event
  214.      */
  215.     protected function postDispatch($eventNameEvent $event)
  216.     {
  217.     }
  218.     private function preProcess($eventName)
  219.     {
  220.         if (!$this->dispatcher->hasListeners($eventName)) {
  221.             $this->orphanedEvents[] = $eventName;
  222.             return;
  223.         }
  224.         foreach ($this->dispatcher->getListeners($eventName) as $listener) {
  225.             $priority $this->getListenerPriority($eventName$listener);
  226.             $wrappedListener = new WrappedListener($listenernull$this->stopwatch$this);
  227.             $this->wrappedListeners[$eventName][] = $wrappedListener;
  228.             $this->dispatcher->removeListener($eventName$listener);
  229.             $this->dispatcher->addListener($eventName$wrappedListener$priority);
  230.         }
  231.     }
  232.     private function postProcess($eventName)
  233.     {
  234.         unset($this->wrappedListeners[$eventName]);
  235.         $skipped false;
  236.         foreach ($this->dispatcher->getListeners($eventName) as $listener) {
  237.             if (!$listener instanceof WrappedListener) { // #12845: a new listener was added during dispatch.
  238.                 continue;
  239.             }
  240.             // Unwrap listener
  241.             $priority $this->getListenerPriority($eventName$listener);
  242.             $this->dispatcher->removeListener($eventName$listener);
  243.             $this->dispatcher->addListener($eventName$listener->getWrappedListener(), $priority);
  244.             if (null !== $this->logger) {
  245.                 $context = array('event' => $eventName'listener' => $listener->getPretty());
  246.             }
  247.             if ($listener->wasCalled()) {
  248.                 if (null !== $this->logger) {
  249.                     $this->logger->debug('Notified event "{event}" to listener "{listener}".'$context);
  250.                 }
  251.                 if (!isset($this->called[$eventName])) {
  252.                     $this->called[$eventName] = new \SplObjectStorage();
  253.                 }
  254.                 $this->called[$eventName]->attach($listener);
  255.             }
  256.             if (null !== $this->logger && $skipped) {
  257.                 $this->logger->debug('Listener "{listener}" was not called for event "{event}".'$context);
  258.             }
  259.             if ($listener->stoppedPropagation()) {
  260.                 if (null !== $this->logger) {
  261.                     $this->logger->debug('Listener "{listener}" stopped propagation of the event "{event}".'$context);
  262.                 }
  263.                 $skipped true;
  264.             }
  265.         }
  266.     }
  267.     private function sortListenersByPriority($a$b)
  268.     {
  269.         if (\is_int($a['priority']) && !\is_int($b['priority'])) {
  270.             return 1;
  271.         }
  272.         if (!\is_int($a['priority']) && \is_int($b['priority'])) {
  273.             return -1;
  274.         }
  275.         if ($a['priority'] === $b['priority']) {
  276.             return 0;
  277.         }
  278.         if ($a['priority'] > $b['priority']) {
  279.             return -1;
  280.         }
  281.         return 1;
  282.     }
  283. }