This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/EventDispatcher/EventDispatcher.php

146 lines
3.7 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
namespace Symfony\Component\EventDispatcher;
2010-01-04 14:26:20 +00:00
/*
* This file is part of the Symfony package.
2010-01-04 14:26:20 +00:00
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
2010-04-07 02:07:59 +01:00
*
2010-01-04 14:26:20 +00:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* EventDispatcher implements a dispatcher object.
*
* @see http://developer.apple.com/documentation/Cocoa/Conceptual/Notifications/index.html Apple's Cocoa framework
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class EventDispatcher
{
protected $listeners = array();
/**
* Connects a listener to a given event name.
*
* @param string $name An event name
* @param mixed $listener A PHP callable
*/
public function connect($name, $listener)
2010-01-04 14:26:20 +00:00
{
if (!isset($this->listeners[$name])) {
$this->listeners[$name] = array();
}
2010-01-04 14:26:20 +00:00
$this->listeners[$name][] = $listener;
2010-01-04 14:26:20 +00:00
}
/**
* Disconnects a listener for a given event name.
*
* @param string $name An event name
* @param mixed $listener A PHP callable
*
* @return mixed false if listener does not exist, null otherwise
*/
public function disconnect($name, $listener)
2010-01-04 14:26:20 +00:00
{
if (!isset($this->listeners[$name])) {
return false;
}
foreach ($this->listeners[$name] as $i => $callable) {
if ($listener === $callable) {
unset($this->listeners[$name][$i]);
}
}
2010-01-04 14:26:20 +00:00
}
/**
* Notifies all listeners of a given event.
*
* @param Event $event A Event instance
*
* @return Event The Event instance
*/
public function notify(Event $event)
2010-01-04 14:26:20 +00:00
{
foreach ($this->getListeners($event->getName()) as $listener) {
call_user_func($listener, $event);
}
return $event;
2010-01-04 14:26:20 +00:00
}
/**
* Notifies all listeners of a given event until one returns a non null value.
*
* @param Event $event A Event instance
*
* @return Event The Event instance
*/
public function notifyUntil(Event $event)
2010-01-04 14:26:20 +00:00
{
foreach ($this->getListeners($event->getName()) as $listener) {
if (call_user_func($listener, $event)) {
$event->setProcessed(true);
break;
}
}
return $event;
2010-01-04 14:26:20 +00:00
}
/**
* Filters a value by calling all listeners of a given event.
*
* @param Event $event A Event instance
* @param mixed $value The value to be filtered
*
* @return Event The Event instance
*/
public function filter(Event $event, $value)
2010-01-04 14:26:20 +00:00
{
foreach ($this->getListeners($event->getName()) as $listener) {
$value = call_user_func($listener, $event, $value);
}
$event->setReturnValue($value);
return $event;
2010-01-04 14:26:20 +00:00
}
/**
* Returns true if the given event name has some listeners.
*
* @param string $name The event name
*
* @return Boolean true if some listeners are connected, false otherwise
*/
public function hasListeners($name)
2010-01-04 14:26:20 +00:00
{
if (!isset($this->listeners[$name])) {
$this->listeners[$name] = array();
}
return (boolean) count($this->listeners[$name]);
2010-01-04 14:26:20 +00:00
}
/**
* Returns all listeners associated with a given event name.
*
* @param string $name The event name
*
* @return array An array of listeners
*/
public function getListeners($name)
2010-01-04 14:26:20 +00:00
{
if (!isset($this->listeners[$name])) {
return array();
}
2010-01-04 14:26:20 +00:00
return $this->listeners[$name];
}
2010-01-04 14:26:20 +00:00
}