EventManager.php 3.5 KB
Newer Older
1
<?php
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 *  $Id$
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information, see
 * <http://www.phpdoctrine.org>.
 */
21

22
#namespace Doctrine\Common;
23

24 25
/**
 * The EventManager is the central point of Doctrine's event listener system.
romanb's avatar
romanb committed
26
 * Listeners are registered on the manager and events are dispatched through the
27 28 29 30 31 32
 * manager.
 * 
 * @author Roman Borschel <roman@code-factory.org>
 * @author Guilherme Blanco <guilhermeblanco@hotmail.com>
 * @since 2.0
 */
romanb's avatar
romanb committed
33
class Doctrine_Common_EventManager
34
{
35 36 37 38 39 40
    /**
     * Map of registered listeners.
     * <event> => <listeners> 
     *
     * @var array
     */
41 42
    private $_listeners = array();

43 44 45 46 47 48 49 50
    /**
     * Dispatches an event to all registered listeners.
     *
     * @param string|Event $event  The name of the event or the event object.
     * @return boolean
     */
    public function dispatchEvent($event)
    {
51 52
        $argIsCallback = is_string($event);
        $callback = $argIsCallback ? $event : $event->getType();
53

54 55 56 57 58
        if (isset($this->_listeners[$callback])) {
            $event = $argIsCallback ? new Doctrine_Event($event) : $event;
            foreach ($this->_listeners[$callback] as $listener) {
                $listener->$callback($event);
            }
59
            return ! $event->getDefaultPrevented();
60
        }
61
        return true;
62
    }
63

64 65 66 67 68 69 70 71 72
    /**
     * Gets the listeners of a specific event or all listeners.
     *
     * @param string $event  The name of the event.
     * @return 
     */
    public function getListeners($event = null)
    {
        return $event ? $this->_listeners[$event] : $this->_listeners;
73
    }
74

75 76 77 78 79 80 81 82 83
    /**
     * Checks whether an event has any registered listeners.
     *
     * @param string $event
     * @return boolean
     */
    public function hasListeners($event)
    {
        return isset($this->_listeners[$event]);
84
    }
85

86 87 88 89 90 91 92 93
    /**
     * Adds an event listener that listens on the specified events.
     *
     * @param string|array $events  The event(s) to listen on.
     * @param object $listener  The listener object.
     */
    public function addEventListener($events, $listener)
    {
94
        // TODO: maybe check for duplicate registrations?
95
        foreach ((array)$events as $event) {
96
            $this->_listeners[$event] = $listener;
97 98
        }
    }
romanb's avatar
romanb committed
99 100 101 102 103
    
    /**
     * Adds an EventSubscriber. The subscriber is asked for all the events he is
     * interested in and added as a listener for these events.
     * 
104
     * @param Doctrine\Common\EventSubscriber $subscriber  The subscriber.
romanb's avatar
romanb committed
105
     */
romanb's avatar
romanb committed
106
    public function addEventSubscriber(Doctrine_Common_EventSubscriber $subscriber)
romanb's avatar
romanb committed
107 108 109
    {
        $this->addEventListener($subscriber->getSubscribedEvents(), $subscriber);
    }
110 111 112
}

?>